在linux
的shell
中怎樣處理tail -n 10 access.log這樣的命令列選項
呢?這是被別人問起的乙個問題,好好學習
了一下,進行總結如下:
在bash中,可以用以下三種方式來處理命令列引數
,每種方式都有自己的應用場景。
1.直接處理,依次對$1,$2,...,$n進行解析,分別手工處理;
2.getopts來處理,單個字元選項的情況(如:-n 10 -f file.txt等選項);
3.getopt,可以處理單個字元選項,也可以處理長選項long-option(如:--prefix=/home等)。
總結:一般小指令碼手工處理也許就夠了,getopts能處理絕大多數的情況,getopt
較複雜、功能也更強大。
下面分別進行簡單的說明:
必須要要知道幾個變數,
* $0 :即命令本身,相當於c/c++中的argv[0]
* $1 :第乙個引數.
* $2, $3, $4 ... :第2、3、4個引數,依次類推。
* $# 引數的個數,不包括命令本身
* $@ :引數本身的列表,也不包括命令本身
* $* :和$@相同,但"$*" 和 "$@"(加引號)並不同,"$*"將所有的引數解釋成乙個字串,而"$@"是乙個引數陣列。
手工處理方式能滿足多數的簡單需求,配合shift使用也能構造出強大的功能,但處理複雜選項的時候建議用下面的兩種方法。
給個例項吧(getargs.sh):
#!/bin/bash
if [ $# -lt 1 ]; then
echo "error.. need args"
exit 1
fiecho "commond is $0"
echo "args are:"
for arg in "$@"
doecho $arg
done
執行命令:./getargs.sh 11 22 cc
commond is ./getargs.sh
args are:
1122
cc處理命令列引數是乙個相似而又複雜的事情,為此,c提供了getopt/getopt_long等函式,c++的boost提供了options庫,在shell中,處理此事的是getopts和getopt.
先說一下getopts/getopt的區別吧,getopt是個外部binary檔案,而getopts是shell builtin。
[admin@intlqa142055x ~]$ type getopt
getopt is /usr/bin/getopt
[admin@intlqa142055x ~]$ type getopts
getopts is a shell builtin
getopts不能直接處理長的選項(如:--prefix=/home等)
關於getopts的使用方法,可以man bash 搜尋getopts
getopts有兩個引數,第乙個引數是乙個字串,包括字元和「:」,每乙個字元都是乙個有效的選項,如果字元後面帶有「:」,表示這個字元有自己的引數。getopts從命令中獲取這些引數,並且刪去了「-」,並將其賦值在第二個引數中,如果帶有自己引數,這個引數賦值在「optarg」中。
提供getopts的shell內建了optarg這個變變,getopts修改了這個變數。
這裡變數$optarg儲存相應選項的引數,而$optind總是儲存原始$*中下乙個要處理的元素位置。
while getopts ":a:bc" opt #第乙個冒號表示忽略錯誤;字元後面的冒號表示該選項必須有自己的引數
**例項(getopts.sh):
echo $*
while getopts ":a:bc" opt
docase $opt in
a ) echo $optarg
echo $optind;;
b ) echo "b $optind";;
c ) echo "c $optind";;
? ) echo "error"
exit 1;;
esac
done
echo $optind
shift $(($optind - 1))
#通過shift $(($optind - 1))的處理,$*中就只保留了除去選項內容的引數,可以在其後進行正常的shell程式設計處理了。
echo $0
echo $*
執行命令:./getopts.sh -a 11 -b -c
-a 11 -b -c113
b 4c 5
5./getopts.sh
具體用用法可以 man getopt
#-o表示短選項,兩個冒號表示該選項有乙個可選引數,可選引數必須緊貼選項,如-carg 而不能是-c arg
#--long表示長選項
簡單舉個例子吧(getopt.sh):
#!/bin/bash
# a small example program for using the new getopt(1) program.
# this program will only work with bash(1)
# an similar program using the tcsh(1) script. language can be found
# as parse.tcsh
# example input and output (from the bash prompt):
# ./parse.bash -a par1 'another arg' --c-long 'wow!*\?' -cmore -b " very long "
# option a
# option c, no argument
# option c, argument `more'
# option b, argument ` very long '
# remaining arguments:
# --> `par1'
# --> `another arg'
# --> `wow!*\?'
# note that we use `"$@"' to let each command-line parameter expand to a
# separate word. the quotes around `$@' are essential!
# we need temp as the `eval set --' would nuke the return value of getopt.
#-o表示短選項,兩個冒號表示該選項有乙個可選引數,可選引數必須緊貼選項
#如-carg 而不能是-c arg
#--long表示長選項
#"$@"在上面解釋過
# -n:出錯時的資訊
# -- :舉乙個例子比較好理解:
#我們要建立乙個名字為 "-f"的目錄你會怎麼辦?
# mkdir -f #不成功,因為-f會被mkdir當作選項來解析,這時就可以使用
# mkdir -- -f 這樣-f就不會被作為選項。
temp=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \
-n 'example.bash' -- "$@"`
if [ $? != 0 ] ; then echo "terminating..." >&2 ; exit 1 ; fi
# note the quotes around `$temp': they are essential!
#set 會重新排列引數的順序,也就是改變$1,$2...$n的值,這些值在getopt中重新排列過了
eval set -- "$temp"
#經過getopt的處理,下面處理具體選項。
while true ; do
case "$1" in
-a|--a-long) echo "option a" ; shift ;;
-b|--b-long) echo "option b, argument \`$2'" ; shift 2 ;;
-c|--c-long)
# c has an optional argument. as we are in quoted mode,
# an empty parameter will be generated if its optional
# argument is not found.
case "$2" in
"") echo "option c, no argument"; shift 2 ;;
*) echo "option c, argument \`$2'" ; shift 2 ;;
esac ;;
--) shift ; break ;;
*) echo "internal error!" ; exit 1 ;;
esac
done
echo "remaining arguments:"
for arg do
echo '--> '"\`$arg'" ;
done
執行命令:./getopt.sh --b-long abc -a -c33 remain
option b, argument `abc'
option a
option c, argument `33'
remaining arguments:
--> `remain'
from:
shell指令碼程式設計 處理命令列引數
1 讀取引數 bash shell使用位置引數的特殊變數記錄命令列引數,0是程式名,1 9依次為輸入引數 如果指令碼需要多餘9個變數,需要將變數數字加花括號,如 命令列輸入的引數需要以空格分隔,當空格作為引數的一部分時可以使用引號分開 在指令碼中對命令列引數進行處理時需要對引數進行有效性判斷,如 1...
shell指令碼命令列引數獲取 getopts
引數說明 詳細說明 如果option string不用 開頭,invalid option錯誤和miss option argument錯誤都會使varname被設成?getopts包含兩個內建變數,optarg和optind bin bash quiet verbose device logfil...
Go語言 flag Go的命令列引數 命令列處理
1.命令列引數 命令列引數是指定程式執行引數的乙個常見方式。例如,go run hello.go,程式 go 使用了 run 和 hello.go 兩個引數。package main import os import fmt func main 要實驗命令列引數,最好先使用 go build 編譯乙...