mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
d826be686a
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@534 f6dd340e-d3f9-0310-b409-bdd246841980
8 lines
129 B
Bash
Executable file
8 lines
129 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd ../html
|
|
|
|
for x in `ls cplusplus[0-9][0-9].html` ; do
|
|
../tmp/bin/rmindexlines < $x > ${x}2
|
|
mv ${x}2 $x
|
|
done
|