File: cleanup.sh

package info (click to toggle)
sprng 2.0a-19
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,308 kB
  • sloc: ansic: 30,353; fortran: 1,618; makefile: 576; cpp: 58; sh: 5
file content (6 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (11)
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