vote up 1 vote down star

The title says it all - How to check if a variable contains a number in UNIX shell?

flag
The title asks if a variable is a number, the description asks if it contains a number. Which do you want? Also, when you say number d o you mean integer or should it handle decimals? – gpojd Nov 21 '08 at 19:35

4 Answers

vote up 2 vote down

Shell variables have no type, so the simplest way is to use the return type test command:

if [ $var -eq $var 2> /dev/null ]; then ...

(Or else parse it with a regexp)

link|flag
vote up 2 vote down
if echo $var | egrep -q '^[0-9]+$'; then
    # $var is a number
else
    # $var is not a number
fi
link|flag
I don't know that this is correct, this checks that it is an integer (not a number). I would change the regexp to '[0-9]' to satisfy the problem if the question is in the description ("contains"), and change it to handle non-integer numbers if it is the question in the title ("is"). – gpojd Nov 21 '08 at 19:33
vote up 1 vote down

The title doesn't say all. Do you need to check for an integer or for a float as well?

link|flag
vote up 0 vote down

In either ksh93 or bash with the extglob option enabled:

if [[ $var == +([0-9]) ]]; then ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.