【shell】Linux shell 之 判斷用戶輸入的變量是否為數字
阿新 • • 發佈:2018-03-25
shell linux 腳本 編程 自動化運維 Please enter a number:1
1 is a number
[root@XiaoPeng scripts]# bash intnumber.sh
Please enter a number:a
a is not number
本文內容:判斷用戶輸入的參數是否為數字
在shell中如何進行計算?
方式一
[root@XiaoPeng scripts]# echo $((1+2))
3
方式二
[root@XiaoPeng scripts]# expr 2 + 3
5
[root@XiaoPeng scripts]#
註意:使用方式二的時候,要求必須要有間隔。如果使用的是乘法,號必須進行轉義寫為 \
[root@XiaoPeng scripts]# expr 2 * 3 expr: 語法錯誤 [root@XiaoPeng scripts]# expr 2 \* 3 6 [root@XiaoPeng scripts]#
如何判斷用戶輸入的變量值是否為數字?
首先大家先來看一下使用echo 進行計算的時候,字符 + 數字會是什麽效果。
[root@XiaoPeng scripts]# echo $((a+1))
1
[root@XiaoPeng scripts]# echo $((a+2))
2
在這個例子中,shell 會把字符當做0來計算,如果我們想判斷用戶輸入的是否為數字,那就可以使用 echo $((變量+1))去判斷,如果為1,那麽用戶輸入的為字符,如果為數字,那麽結果不為1.
但是這樣會有個問題,假如用戶輸入的數字為0呢?
使用方式二解決
[root@XiaoPeng scripts]# expr b + 3 expr: 非數值參數
假設用戶輸入的參數為字符,那麽使用expr就會計算失敗,這時候 $? 就不為0,那麽我們只需要看 $? 是否為0即可判斷用戶輸入的參數是否為數字了。
例子
```#!/bin/bash -
read -p "Please enter a number:" number
expr $number + 1 >/dev/null 2>&1
[ $? -ne 0 ] && echo " $number is not number" || echo "$number is a number"
**執行結果**
[root@XiaoPeng scripts]# bash intnumber.sh
1 is a number
[root@XiaoPeng scripts]# bash intnumber.sh
Please enter a number:a
a is not number
版權所有:[arppinging](www.arppinging.com)
【shell】Linux shell 之 判斷用戶輸入的變量是否為數字