Rejecting device names which are not a single word

This commit is contained in:
Thomas Schmitt 2019-12-03 22:07:34 +01:00
parent 7fa1f82ed9
commit f419f51f1e
1 changed files with 10 additions and 3 deletions

View File

@ -212,9 +212,16 @@ arg_interpreter() {
exit 0
elif echo "$i" | grep -v '^-' >/dev/null
then
devs_named=y
devs="$devs $i"
show_reasons=y
num=$(echo "$i" | wc -w)
if test "$num" = 1
then
devs_named=y
devs="$devs $i"
show_reasons=y
else
echo "$0 : Given device name is not a single word: '$i'" >&2
exit 12
fi
else
echo "$0 : Unknown option: $i" >&2
echo >&2