File: cleanup

package info (click to toggle)
r-cran-th.data 1.0-10-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,512 kB
  • sloc: sh: 11; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 172 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

for f in ./man/*~; do
    rm -f $f
done

for f in *~; do
    rm -f $f
done

for f in .*~; do
    rm -f $f
done

find . -name "DEADJOE" -exec rm -f {} \;

exit 0