/usr/share/doc/lisaac-doc/examples/clean.sh is in lisaac-doc 1:0.39~rc1-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash
for i in `find -name "*~"` ; do rm $i ; done
for i in `find -name "*.c"` ; do rm $i ; done
for i in `find -name "*.exe"` ; do rm $i ; done
for i in `find -name "avoir.txt"` ; do rm $i ; done
for i in `find -name "*.li"`
do
FILE=`echo $i|sed -e 's/\.li$//;s%^\./%%'`
if [ -f $FILE ];then
rm $FILE
fi
done
exit 0
|