vote up 3 vote down star
1

I just can't figure out how do I make sure an argument passed to my script is a number or not.

All I want to do is something like this:

test *isnumber* $1 && VAR=$1 || echo "need a number"

Any help?

UPDATE: I managed (whit Charles' help) to do it, but I'm not yet sure it's the best way to do that (even though it worked on my tests). This is how it ended up:

[[ $1 =~ "^[0-9]+$" ]] && echo "numero" && exit 0 || echo "nao numero" && exit 1
flag

4 Answers

vote up 8 vote down check

One approach is to use a regular expression, like so:

if ! [[ "$yournumber" =~ ^[0-9]+$ ]] ; then
   exec >&2; echo "error: Not a number"; exit 1
fi

If the value is not necessarily an integer, consider amending the regex appropriately; for instance:

^[0-9]+([.][0-9]+)?$
link|flag
+1 for this approach, but take care with decimals, doing this test with, by example, "1.0" or "1,0" prints "error: Not a number". – SourceRebels Apr 30 at 14:30
@DirtyAffairs - good call, updated appropriately. – Charles Duffy Apr 30 at 15:02
I find the ''exec >&2; echo ...'' rather silly. Just ''echo ... >&2'' – lhunath May 2 at 10:08
@lhunath - true 'nuff. I tend to use it in more complex error handlers (ie. much more than just one "echo" following), but the habit leaked out here. – Charles Duffy May 2 at 14:29
vote up 2 vote down

I use this:

$var -eq $var

as in:

#!/bin/bash

var=a

if [ $var -eq $var 2>/dev/null ]; then
  echo number
else
  echo not a number
fi

Redirection of standard error is there to hide the "integer expression expected" message that bash prints out in case we do not have a number.

EDIT: This approach do not behave correctly with numbers with decimal point. My fault.

link|flag
vote up 1 vote down

I use the following (for integers):

## ##### constants
##
## __TRUE - true (0)
## __FALSE - false (1)
##
typeset -r __TRUE=0
typeset -r __FALSE=1

## --------------------------------------
## isNumber
## check if a value is an integer 
## usage: isNumber testValue 
## returns: ${__TRUE} - testValue is a number else not
##
function isNumber {
  typeset TESTVAR="$(echo "$1" | sed 's/[0-9]*//g' )"
  [ "${TESTVAR}"x = ""x ] && return ${__TRUE} || return ${__FALSE}
}

isNumber $1 
if [ $? -eq ${__TRUE} ] ; then
  print "is a number"
fi
link|flag
vote up 0 vote down

This is a little rough around the edges but a little more novice friendly.

if [ $number -ge 0 ]
then
echo "Continue with code block"
else
echo "We matched 0 or $number is not a number"
fi

This will cause an error and print "Illegal number:" if $number is not a number but it will not break out of the script. Oddly there is not a test option I could find to just test for an integer. The logic here will match any number that is greater than or equal to 0.

link|flag

Your Answer

Get an OpenID
or

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