File: cmake-clean.sh

package info (click to toggle)
tidy-html5 1%3A5.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,384 kB
  • ctags: 4,296
  • sloc: ansic: 36,959; ruby: 841; sh: 293; cpp: 30; makefile: 9
file content (25 lines) | stat: -rwxr-xr-x 355 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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