Fix handling of spaces in arguments

This commit is contained in:
Pierre Pronchery 2016-02-04 00:22:21 +01:00
parent 084da3a25f
commit cec9fadeb7

View File

@ -103,6 +103,6 @@ if [ $# -lt 1 ]; then
usage
exit $?
fi
for i in $@; do
for i in "$@"; do
create "$i"
done