The title says it all - How to check if a variable contains a number in UNIX shell?
|
|
|||
|
|
|
Shell variables have no type, so the simplest way is to use the return type
(Or else parse it with a regexp) |
||
|
|
|
|
|
||
|
|
|
The title doesn't say all. Do you need to check for an integer or for a float as well? |
||
|
|
|
|
In either ksh93 or bash with the extglob option enabled: if [[ $var == +([0-9]) ]]; then ... |
||
|
|
