summaryrefslogtreecommitdiff
path: root/postpost/clean
diff options
context:
space:
mode:
Diffstat (limited to 'postpost/clean')
-rwxr-xr-xpostpost/clean10
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
+