Warning, file /libraries/qca/src/botantools/removeadded.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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