Explicitly allow only -r and --refresh in argument handler

It is already checked, but this make the code explicit.

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
pull/2705/head
Mcat12 5 years ago
parent 422680ee9f
commit add5e4ca5e
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D

@ -461,7 +461,7 @@ chronoFunc() {
fi
# Get refresh number
if [[ "$*" == *"-r"* ]]; then
if [[ "$*" == *"-r" || "$*" == *"-r "* || "$*" == *"--refresh" || "$*" == *"--refresh "* ]]; then
num="$*"
num="${num/*-r* /}"
num_str="Refresh set for every $num seconds"

Loading…
Cancel
Save