diff options
Diffstat (limited to 'postpost/clean')
-rwxr-xr-x | postpost/clean | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/postpost/clean b/postpost/clean new file mode 100755 index 0000000..a8fc648 --- /dev/null +++ b/postpost/clean @@ -0,0 +1,10 @@ +#!/bin/sh + +for t in $1* +do + if [ -e $t ] + then + rm $t/* + fi +done + |