defensive-coding-guide/modules/ROOT/examples/Shell-Input_Validation.adoc
2022-01-13 20:42:40 +01: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