File indexing completed on 2024-10-06 07:22:50
0001 #!/bin/sh 0002 0003 for f in `find botan -name \*.cpp -o -name \*.h` ; do 0004 sed -e '1,/LICENSEHEADER_END/d' $f | grep -v WRAPNS_LINE > file.tmp 0005 cp file.tmp $f 0006 rm file.tmp 0007 done 0008