misc/delete-old-helper.sh: simple script to delete old+abandoned helper files

This commit is contained in:
Brian Warner 2008-05-27 21:17:20 -07:00
parent b6c2f80170
commit 15b373ad9c

View File

@ -0,0 +1,4 @@
#!/bin/sh
find helper/CHK_encoding -mtime +7 -print0 |xargs -0 rm
find helper/CHK_incoming -mtime +14 -print0 |xargs -0 rm