shell指令碼中簡單的函數樣本

來源:互聯網
上載者:User

標籤:shell指令碼   linux   

    這個指令碼 程式my_name示範了函數的參數是如何傳遞的,以及函數如何返回一個true或false值。使用一個參數來調用該指令碼程式,該參數是想要在問題中使用的名字。

shell指令碼代碼

#!/bin/shyes_or_no() {  echo "Is your name $* ?"  while true  do    echo -n "Enter yes or no: "    read x    case "$x" in      y | yes ) return 0;;      n | no  ) return 1;;      *  )      echo "Answer yes or no"      esac   done}echo "Original parameters are $*"if yes_or_no "$1"then  echo "Hi $1,nice name"else  echo "Never mind"fiexit 0  


測試結果



    該指令碼程式開始時,函數yes_or_no被定義,但先不會被執行。在if語句中,指令碼程式執行到函數 yes_or_no 時,先把$1替換為程式的第一個參數zhang,再把它作為參數傳遞給這個函數。函數將使用這些參數(他們現在被儲存在$1、$2等位置參數中)並向調用者返回一個值。if 結構再根據這個返回值去執行響應的語句。

  shell 中的 if 語句, 如果 yes_or_no 返回 0 ,則走 then 分支,如果返回 1 ,則走 else 分支。

shell指令碼中簡單的函數樣本

相關文章

聯繫我們

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