Skip to content

Instantly share code, notes, and snippets.

@stoyanovgeorge
Last active August 20, 2018 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stoyanovgeorge/b7b5a33fe9c2c61edc5b3842bb397096 to your computer and use it in GitHub Desktop.
Save stoyanovgeorge/b7b5a33fe9c2c61edc5b3842bb397096 to your computer and use it in GitHub Desktop.
Check if $var is integer or not
#!/bin/bash
if [[ "$var" =~ ^-?[0-9]+$ ]];then
echo "integer"
else
echo "not integer"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment