remove unused CLI options

* -f is not used in `getopts`
* -i is not used in `getopts`
* -l needs trailing `:` to mandate `path/to/log/file`
* leading `:` is unnecessary in standard shell

Signed-off-by: Paul Morgan <jumanjiman@gmail.com>
This commit is contained in:
Paul Morgan 2015-09-04 19:22:45 -04:00
parent a1d9a18400
commit ed6b0fa348

View file

@ -62,7 +62,7 @@ if [ "x$ID" != "x0" ]; then
fi
# Get the flags
while getopts :hlfi: args
while getopts hl: args
do
case $args in
h) usage ;;