up vote 24 down vote favorite
13
share [g+] share [fb]

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 "number" && exit 0 || echo "not a number" && exit 1
link|improve this question

As an aside -- the test && echo "foo" && exit 0 || echo "bar" && exit 1 approach you're using may have some unintended side effects -- if the echo fails (perhaps output is to a closed FD), the exit 0 will be skipped, and the code will then try to echo "bar". If it fails at that too, the && condition will fail, and it won't even execute exit 1! Using actual if statements rather than &&/|| is less prone to unexpected side effects. – Charles Duffy Aug 24 '11 at 14:12
feedback

11 Answers

up vote 32 down vote accepted

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|improve this answer
2  
+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 '09 at 14:30
@DirtyAffairs - good call, updated appropriately. – Charles Duffy Apr 30 '09 at 15:02
2  
I find the ''exec >&2; echo ...'' rather silly. Just ''echo ... >&2'' – lhunath May 2 '09 at 10:08
1  
@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 '09 at 14:29
^-*[0-9]+([.][0-9]+)?$ to also test for negative numbers – Ben Jun 23 '11 at 20:03
show 1 more comment
feedback

Without bashisms (works even in the System V sh),

case $string in
    ''|*[!0-9]*) echo bad ;;
    *) echo good ;;
esac

This rejects empty strings and strings containing non-digits, accepting everything else.

Negative or floating-point numbers need some additional work. An idea is to exclude - / . in the first "bad" pattern and add more "bad" patterns containing the inappropriate uses of them (?*-* / *.*.*)

link|improve this answer
1  
+1 -- this is idiomatic, portable way back to the original Bourne shell, and has built-in support for glob-style wildcards. If you come from another programming language, it looks eerie, but it's much more elegant than coping with the brittleness of various quoting issues and endless backwards/sideways compatibility problems with if test ... – tripleee Sep 4 '11 at 13:21
You can change the first line to ${string#-} (which doesn't work in antique Bourne shells, but works in any POSIX shell) to accept negative integers. – Gilles Jan 3 at 17:17
feedback

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|improve this answer
2  
I'd still recommend this (but with the variables quoted to allow for empty strings), since the result is guaranteed to be usable as a number in Bash, no matter what. – l0b0 Dec 24 '10 at 8:43
feedback

This tests if a number is a non negative integer and is both shell independent (i.e. without bashisms) and uses only shell built-ins:

[ -z "${num##[0-9]*}" ] && echo "is a number" || echo "is not a number";

BUT IS WRONG.
As jilles commented and suggested in his answer this is the correct way to do it using shell-patterns.

[ ! -z "${num##*[!0-9]*}" ] && echo "is a number" || echo "is not a number";
link|improve this answer
This does not work properly, it accepts any string starting with a digit. Note that WORD in ${VAR##WORD} and similar is a shell pattern, not a regular expression. – jilles Oct 16 '10 at 22:46
Thank you very much! Answer updated. – mrucci Oct 17 '10 at 23:15
feedback

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|improve this answer
Almost correct (you're accepting the empty string) but gratutiously complicated to the point of obfuscation. – Gilles Jan 3 at 17:16
feedback

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|improve this answer
Your test misses 0, not to mention negative numbers. – Gilles Jan 3 at 17:14
feedback

http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_04_03.html

You can also use bash's character classes.

if [[ $VAR = *[[:digit:]]* ]]; then
 echo "$VAR is numeric"
else
 echo "$VAR is not numeric"
fi

Numerics will include space, the decimal point, and "e" or "E" for floating point.

But, if you specify a C-style hex number, i.e. "0xffff" or "0XFFFF", [[:digit:]] returns true. A bit of a trap here, bash allows you do to something like "0xAZ00" and still count it as a digit (isn't this from some weird quirk of GCC compilers that let you use 0x notation for bases other than 16???)

You might want to test for "0x" or "0X" before testing if it's a numeric if your input is completely untrusted, unless you want to accept hex numbers. That would be accomplished by:

if [[ ${VARIABLE:1:2} = "0x" ]] || [[ ${VARIABLE:1:2} = "0X" ]]; then echo "$VAR is not numeric"; fi
link|improve this answer
feedback

I tried ultrasawblade's recipe as it seemed the most practical to me, and couldn't make it work. In the end i devised another way though, based as others in parameter substitution, this time with regex replacement:

[[ "${var//*([[:digit:]])}" ]]; && echo "$var is not numeric" || echo "$var is numeric"

It removes every :digit: class character in $var and checks if we are left with an empty string, meaning that the original was only numbers.

What i like about this one is its small footprint and flexibility. In this form it only works for non-delimited, base 10 integers, though surely you can use pattern matching to suit it to other needs.

link|improve this answer
Reading mrucci's solution, it looks almost the same as mine, but using regular string replacement instead of "sed style". Both use the same rules for pattern matching and are, AFAIK, interchangeable solutions. – Juaco Oct 16 '10 at 22:41
feedback

Quick & Dirty: I know it's not the most elegant way, but I usually just added a zero to it and test the result. like so:

function isInteger {
  [ $(($1+0)) != 0 ] && echo "$1 is a number" || echo "$1 is not a number"
 }

x=1;      isInteger $x
x="1";    isInteger $x
x="joe";  isInteger $x
x=0x16 ;  isInteger $x
x=-32674; isInteger $x   

$(($1+0)) will return 0 or bomb if $1 is NOT an integer. for Example:

function zipIt  { # quick zip - unless the 1st parameter is a number
  ERROR="not a valid number. " 
  if [ $(($1+0)) != 0 ] ; then  # isInteger($1) 
      echo " backing up files changed in the last $1 days."
      OUT="zipIt-$1-day.tgz" 
      find . -mtime -$1 -type f -print0 | xargs -0 tar cvzf $OUT 
      return 1
  fi
    showError $ERROR
}

NOTE: I guess I never thought to check for floats or mixed types that will make the entire script bomb... in my case, I didn't want it go any further. I'm gonna play around with mrucci's solution and Duffy's regex - they seem the most robust within the bash framework...

link|improve this answer
This accepts arithmetic expressions like 1+1, but rejects some positive integers with leading 0s (because 08 is an invalid octal constant). – Gilles Jan 3 at 17:20
feedback
[[ $1 =~ "^[-0-9]+$" ]] && echo "number"

Don't forget "-" to include negatives!

link|improve this answer
What is the minimum version of bash? I just get bash: conditional binary operator expected bash: syntax error near unexpected token `=~' – Paul Hargreaves Nov 28 '11 at 20:11
feedback

Below is a Script written by me and used for a script integration with Nagios and it is working properly till now

#!/bin/bash
# Script to test variable is numeric or not
# Shirish Shukla
# Pass arg1 as number
a1=$1
a=$(echo $a1|awk '{if($1 > 0) print $1; else print $1"*-1"}')
b=$(echo "scale=2;$a/$a + 1" | bc -l 2>/dev/null)
if [[ $b > 1 ]]
then
    echo "$1 is Numeric"
else
    echo "$1 is Non Numeric"
fi

EG:

# sh isnumsks.sh   "-22.22"
-22.22 is Numeric

# sh isnumsks.sh   "22.22"
22.22 is Numeric

# sh isnumsks.sh   "shirish22.22"
shirish22.22 is Non  Numeric
link|improve this answer
This is complex and broken. You need double quotes in echo "$a1", otherwise wildcards in the string are expanded and the outcome depends on what files are in the current directory (try isnumsks.sh "*", then try again after creating a file called 42). You're only looking at the first whitespace-delimited word, so 42 psych is misclassified as numeric. All kinds of input that are not numeric but valid bc syntax will screw this up, e.g. 2012-01-03. – Gilles Jan 3 at 17:07
feedback

Your Answer

 
or
required, but never shown

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