File: cmake-clean.sh

package info (click to toggle)
tidy-html5 2%3A5.6.0-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 5,512 kB
  • sloc: ansic: 40,477; ruby: 841; sh: 293; makefile: 30; cpp: 30
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