df2daf524d
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
6 lines
95 B
Text
6 lines
95 B
Text
for a in $@; do
|
|
if [ ! -e "$a" ]; then
|
|
echo removing "$a"...
|
|
rm "$a"
|
|
fi
|
|
done
|