Good evening, I want to write a script that will say if its argument is a number or not, however I get this:
a: 4: Syntax error: "(" unexpected (expecting ")")
At first I tried like this:
#!/bin/bash
case "$1" in
0x* ) echo hex ;;
''|*[!0-9]*) echo dec ;;
* ) echo wtf ;;
esac
Later I have found this bit:
if ! [[ "$yournumber" =~ ^[0-9]+$ ]] ; then
exec >&2; echo "error: Not a number"; exit 1
fi
Well, none of them works, I call for help!
echo ${SHELL}and${SHELL} --version? The code does not error as stated for GNU bash, version 3.2.19, for one. – kbulgrien Nov 7 '12 at 16:32echo ${SHELL}line inside the script (near the top), and see what output you get. Also see the comments in my answer, below. – ghoti Nov 7 '12 at 17:26