summaryrefslogtreecommitdiff
path: root/postpost/clean
blob: a8fc6481fdf994ce1218f8bbbe21661476e9eed1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

for t in $1*
do
  if [ -e $t ]
  then
    rm $t/*
  fi
done