tidy-html5/build/cmake/cmake-clean.sh
2015-10-02 18:54:25 +02:00

26 lines
355 B
Bash
Executable file

#!/bin/sh
#< cmake-clean.sh for tidy - remove tidylib...
FILES="libtidy*"
TMPCNT=0
for f in $FILES; do
TMPCNT=`expr $TMPCNT + 1`
echo "$TMPCNT: File $f"
done
echo "Will delete the above $TMPCNT files ater a 5 seconds sleep!"
sleep 5
echo "Deleting the above $TMPCNT files!"
for f in $FILES; do
rm -fv $f
done
echo "all done..."
# eof