mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
17 lines
420 B
Text
17 lines
420 B
Text
# Although POSIX leaves the result of expanding ${#@} and ${#*} unspecified,
|
|
# make sure it is at least numeric.
|
|
|
|
set -- bb cc ddd
|
|
set -f
|
|
lengths=${#*}${#@}"${#*}${#@}"$(echo ${#*}${#@}"${#*}${#@}")
|
|
IFS=
|
|
lengths=$lengths${#*}${#@}"${#*}${#@}"$(echo ${#*}${#@}"${#*}${#@}")
|
|
case $lengths in
|
|
*[!0-9]*)
|
|
printf 'bad: %s\n' "$lengths"
|
|
exit 3 ;;
|
|
????????????????*) ;;
|
|
*)
|
|
printf 'too short: %s\n' "$lengths"
|
|
exit 3 ;;
|
|
esac
|