mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
11 lines
159 B
Text
11 lines
159 B
Text
|
#!/bin/bash
|
||
|
|
||
|
sed '
|
||
|
s/"/\\"/g
|
||
|
s/!/$!$/g
|
||
|
s/</\$<\$/g
|
||
|
s/>/\$>\$/g
|
||
|
' cplusplus${1}.ind > cplusplus.ind.out
|
||
|
|
||
|
mv cplusplus.ind.out cplusplus${1}.ind
|