todo getopt fix

This commit is contained in:
James Tomasino 2019-03-21 10:04:59 -04:00
parent 9a3fe41a8a
commit 7ea45bf5e7
1 changed files with 1 additions and 1 deletions

2
todo
View File

@ -57,7 +57,7 @@ else
fi
flag_options="hvea:d:x"
if ! parsed=$(getopt -s sh ${flag_options} "$@"); then
if ! parsed=$(getopt ${flag_options} "$@"); then
exit 1
fi
eval set -- "${parsed}"