DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Bash: Checking If A Variable Is A Number
Shellscript checking if a variable is a number
#!/bin/bash read VARIABLE if [ $VARIABLE -eq $VARIABLE 2> /dev/null ]; then echo $VARIABLE is a number else echo $VARIABLE is not a number fi




