#!/bin/bash
#if present -a flag then print this echo
#echo "A";
#if -b is present then print b
#echo "B"
#and if -c 10 present how can I read this value '10' ?
以上就是我想看看我的劇本帶參數的shell腳本呈現
,我希望能夠象這樣開始
myscript.sh -a -b -c 10
或
myscript.sh
或
myscript.sh -a -c 10
或
myscript.sh -c 10
等在shell上
最初只有-b( 「myscript.sh -b」 )給出了這個「./myscript.sh:選項需要一個參數 - b OPT:? 「 – Lukap 2012-01-17 14:00:36
對不起,我有一個錯字,現在請檢查更新的腳本。沒有參數的選項應該在冒號':'末尾出現。 – anubhava 2012-01-17 14:08:20
乾淨的代碼... +1 – 2012-01-17 14:13:23