Shell指令碼中判斷變數為數位3種方法_linux shell

來源:互聯網
上載者:User

方法1:通過expr 計算變數與一個整數值相加,如果能正常執行則為整數,否則執行出錯,$?將是非0的值

複製代碼 代碼如下:

expr $args + 0 &>/dev/null

方法2:列印變數通過sed替換的方式,將變數中的數字替換為空白,如果執行替換後變數為空白,則為整數

複製代碼 代碼如下:

echo $args | sed 's/[0-9]//g'

如果判斷負數則再用sed過濾負號

複製代碼 代碼如下:

echo $args | sed 's/[0-9]//g' | sed 's/-//g'

下面的指令碼通過兩個函數來實現數值判斷。代碼很簡單,就不加註釋了。

複製代碼 代碼如下:

#!/bin/bash
usage(){
cat <<EOF
USEAGE:sh $0args1 args2
exit 1
EOF
}
checkInt(){
expr $1+ 0&>/dev/null
[ $? -ne 0] && { echo "Args must be integer!";exit 1; }
}
checkInt1(){
tmp=`echo $1|sed 's/[0-9]//g'`
[ -n "${tmp}"]&& { echo "Args must be integer!";exit 1; }
}
[ $# -ne 2]&&usage
args1=$1
args2=$2
checkInt $args1
checkInt1 $args2
if[ $args1 -gt $args2 ];then
echo "yes,$args1 greate than $args2"
else
echo "no,$args1 less than $args2"
fi

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.