File indexing completed on 2024-05-05 04:45:16

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