defensive-coding-guide/modules/ROOT/pages/_partials/snippets/Shell-Input_Validation.adoc
2018-09-20 11:51:33 +02:00

8 lines
118 B
Text

if [[ $value =~ ^-?[0-9]+$ ]] ; then
echo value is an integer
else
echo "value is not an integer" 1>&2
exit 1
fi