File: cleanup.sh

package info (click to toggle)
sprng 2.0a-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,076 kB
  • ctags: 2,031
  • sloc: ansic: 30,361; fortran: 1,618; makefile: 566; cpp: 58; sh: 5
file content (6 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
#!/bin/sh
find lib -type f -name \*.a -mmin -10 | xargs rm -v
find SRC -type f -name \*.o -mmin -10 | xargs rm -v
find TESTS -type f -name \*.o -mmin -10 | xargs rm -v
find TESTS -type f -perm 755  | xargs rm -v
find EXAMPLES -type f -perm 755  | xargs rm -v