[Shell]輸入參數

來源:互聯網
上載者:User

[Shell]輸入參數

擷取shell指令碼的輸入參數,並且判斷得到的參數。

#!/bin/bash#title: testPT.sh#atuhor: orangleliu#date: 2014-08-08#desc: 輸入2個參數,第二個位元字,如果正確就列印出來,錯誤提示出來#=====================#Function  Check#=====================Check(){if [ $# -ne 2 ]   #charge params numthen echo "You must input two params"return 1elseall="$@" #get all input valuesecd=`echo $all|awk '{print $2}'`expr 1 + $secd > /dev/null 2>&1if [ $? -eq 0 ]then echo "$all"elseecho "Sorry age is a number" return 1fifi}#===================#Function main()#==================Main(){Check $1 $2if [ $? -eq 1 ]then exitfi}Main $1 $2

執行結果

[orangle@localhost shell]$ bash testPT.sh
You must input two params
[orangle@localhost shell]$ bash testPT.sh orangle 13
orangle 13
[orangle@localhost shell]$ bash testPT.sh orangle lzz
Sorry age is a number

tips:

if兩邊一定要有空格,if中的符號使用

變數複製的時候,= 兩邊不要有空格

參考教程

本文出自 “orangleliu筆記本” 部落格,請務必保留此出處http://blog.csdn.net/orangleliu/article/details/38449559

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.