shell 編程 協助功能的實現

來源:互聯網
上載者:User
一個程式,往往需要協助說明.
啟用協助說明的方法介紹兩種
1. 最簡單的辦法是通過參數個數判別.例如不帶任何參數就顯示協助說明.
2. 正規做法是命令列後跟 -h 參數.
shell 協助的寫法可以用一堆echo 指令向控制台輸出, 更好的做法是用
here doc 文法, 說明文檔排版整齊,跟輸出一致. 沒有一堆echo 及 雙引號等.
下面給出執行個體:

1. 簡單方法
#!/bin/bash -
set -o nounset                              # Treat unset variables as an error
help()
{
    cat <<- EOF
    Desc: 該程式用來....
    Usage: ./1.sh <filename>
    Author: hjjdebug
    License: ...
EOF
    exit 0
}
if [ $# -lt 1 ] # 不能用 < 這裡是數值比較,不是字串比較
then
    help
fi

2. 正規方法
#!/bin/bash -
#set -o nounset                              # 這個選項關閉吧,否則$1無定義它報文法錯.影響視覺.
help()
{
    cat <<- EOF
    Desc: 該程式用來....
    Usage: ./1.sh <filename>
    Author: hjjdebug
    License: ...
EOF
    exit 0
}

#這裡通過判斷$1是否存在判別,也可以通過$#判別,shift會改變兩者的值,
while [ -n "$1" ]; do
    case $1 in
        -h) help;; # function help is called
        --) shift;break;; # end of options
        -*) echo "error: no such option $1."; exit 1;;
        *) break;;
esac
done

相關文章

聯繫我們

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