Fix handling of spaces in arguments
This commit is contained in:
parent
084da3a25f
commit
cec9fadeb7
|
@ -103,6 +103,6 @@ if [ $# -lt 1 ]; then
|
||||||
usage
|
usage
|
||||||
exit $?
|
exit $?
|
||||||
fi
|
fi
|
||||||
for i in $@; do
|
for i in "$@"; do
|
||||||
create "$i"
|
create "$i"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue
Block a user