rm_attrs: Fix for parameters with whitespace

This commit is contained in:
Ingo Weinhold 2013-06-06 00:08:31 +02:00
parent 729c6333ad
commit 8944824d1c
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ rmAttrs=$1
shift
if [ -f $rmAttrs ]; then
$rmAttrs $@
$rmAttrs "$@"
else
rm $@
rm "$@"
fi