2011-01-24 19:58:53 +00:00
|
|
|
#!/bin/sh
|
2011-09-23 10:23:41 +01:00
|
|
|
#
|
|
|
|
# Wipe Brutus artefacts.
|
|
|
|
#
|
|
|
|
# Run as 'watch -n 10 ./wiper.sh'
|
2011-01-24 19:58:53 +00:00
|
|
|
|
2011-01-27 09:57:54 +00:00
|
|
|
find lsf.* -maxdepth 0 -amin +11 -print -delete 2>&1
|
2011-01-24 19:58:53 +00:00
|
|
|
|
|
|
|
|