shell指令碼編程之選擇執行之if語句

來源:互聯網
上載者:User

標籤:shell if

單分支的if語句:

    if  測試條件

    then

        代碼分支

    fi


雙分支的if語句:

    if  測試條件; then

        條件為真時執行的分支

    else

        條件為假時執行的分支

    fi


樣本:通過參數傳遞一個使用者名稱給指令碼,此使用者不存時,則添加之;

#!/bin/bash#if [ $# -lt 1 ]; then    echo "At least one username."    exit 2fiif grep "^$1\>" /etc/passwd &> /dev/null; then    echo "User $1 exists."else    useradd $1    echo $1 | passwd --stdin $1 &> /dev/null    echo "Add user $1 finished."fi


練習1:通過命令列參數給定兩個數字,輸出其中較大的數值;

#!/bin/bash#if [ $# -lt 2 ]; then    echo "Two integers."    exit 2fiif [ $1 -ge $2 ]; then    echo "Max number: $1."else    echo "Max number: $2."fiecho "Max number: $max."



本文出自 “汪立明” 部落格,請務必保留此出處http://afterdawn.blog.51cto.com/7503144/1915972

shell指令碼編程之選擇執行之if語句

相關文章

聯繫我們

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