主頁(yè) > 知識(shí)庫(kù) > linux shell命令行選項(xiàng)與參數(shù)用法詳解

linux shell命令行選項(xiàng)與參數(shù)用法詳解

熱門標(biāo)簽:打電話機(jī)器人接我是他的秘書 客服外呼系統(tǒng)怎么樣 河南信譽(yù)好的不封卡電話外呼系統(tǒng) 華鋒e路航港口地圖標(biāo)注 揭陽(yáng)智能電話機(jī)器人推薦 地圖標(biāo)注員都是年輕人 百度地圖標(biāo)注錯(cuò)了有責(zé)任嗎 如果做線上地圖標(biāo)注 江蘇云電銷機(jī)器人公司
問(wèn)題描述:在linux shell中如何處理tail -n 10 access.log這樣的命令行選項(xiàng)?
在bash中,可以用以下三種方式來(lái)處理命令行參數(shù),每種方式都有自己的應(yīng)用場(chǎng)景。
1,直接處理,依次對(duì)$1,$2,...,$n進(jìn)行解析,分別手工處理;
2,getopts來(lái)處理,單個(gè)字符選項(xiàng)的情況(如:-n 10 -f file.txt等選項(xiàng));
3,getopt,可以處理單個(gè)字符選項(xiàng),也可以處理長(zhǎng)選項(xiàng)long-option(如:--prefix=/home等)。
總結(jié):小腳本手工處理即可,getopts能處理絕大多數(shù)的情況,getopt較復(fù)雜、功能也更強(qiáng)大。
1,直接手工處理位置參數(shù)
必須要要知道幾個(gè)變量,
復(fù)制代碼 代碼如下:

   *    $0 :即命令本身,相當(dāng)于c/c++中的argv[0]
    *    $1 :第一個(gè)參數(shù).
    *    $2, $3, $4 ... :第2、3、4個(gè)參數(shù),依次類推。
    *    $#  參數(shù)的個(gè)數(shù),不包括命令本身
    *    $@ :參數(shù)本身的列表,也不包括命令本身
    *    $* :和$@相同,但"$*" 和 "$@"(加引號(hào))并不同,"$*"將所有的參數(shù)解釋成一個(gè)字符串,而"$@"是一個(gè)參數(shù)數(shù)組。

手工處理方式能滿足多數(shù)的簡(jiǎn)單需求,配合shift使用也能構(gòu)造出強(qiáng)大的功能,但處理復(fù)雜選項(xiàng)時(shí)建議用下面的兩種方法。
例子,(getargs.sh):

復(fù)制代碼 代碼如下:

#!/bin/bash
if [ $# -lt 1 ]; then
    echo "error.. need args"
    exit 1
fi
echo "commond is $0"
echo "args are:"
for arg in "$@"
do
    echo $arg
done


運(yùn)行命令:

復(fù)制代碼 代碼如下:

./getargs.sh 11 22 cc
commond is ./getargs.sh
args are:
11
22
cc

2,getopts (shell內(nèi)置命令)
處理命令行參數(shù)是一個(gè)相似而又復(fù)雜的事情,為此,c提供了getopt/getopt_long等函數(shù),c++的boost提供了options庫(kù),在shell中,處理此事的是getopts和getopt。
getopts/getopt的區(qū)別,getopt是個(gè)外部binary文件,而getopts是shell builtin。

復(fù)制代碼 代碼如下:

[root@jbxue ~]$ type getopt
getopt is /usr/bin/getopt
[root@jbxue ~]$ type getopts
getopts is a shell builtin

getopts不能直接處理長(zhǎng)的選項(xiàng)(如:--prefix=/home等)
關(guān)于getopts的使用方法,可以man bash  搜索getopts
getopts有兩個(gè)參數(shù),第一個(gè)參數(shù)是一個(gè)字符串,包括字符和“:”,每一個(gè)字符都是一個(gè)有效的選項(xiàng),如果字符后面帶有“:”,表示這個(gè)字符有自己的參數(shù)。getopts從命令中獲取這些參數(shù),并且刪去了“-”,并將其賦值在第二個(gè)參數(shù)中,如果帶有自己參數(shù),這個(gè)參數(shù)賦值在“optarg”中。提供getopts的shell內(nèi)置了optarg這個(gè)變變,getopts修改了這個(gè)變量。
這里變量$optarg存儲(chǔ)相應(yīng)選項(xiàng)的參數(shù),而$optind總是存儲(chǔ)原始$*中下一個(gè)要處理的元素位置。
while getopts ":a:bc" opt  #第一個(gè)冒號(hào)表示忽略錯(cuò)誤;字符后面的冒號(hào)表示該選項(xiàng)必須有自己的參數(shù)
例子,(getopts.sh):

復(fù)制代碼 代碼如下:

echo $*
while getopts ":a:bc" opt
do
        case $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))
#通過(guò)shift $(($optind - 1))的處理,$*中就只保留了除去選項(xiàng)內(nèi)容的參數(shù),可以在其后進(jìn)行正常的shell編程處理了。
echo $0
echo $*


執(zhí)行命令:

復(fù)制代碼 代碼如下:

./getopts.sh -a 11 -b -c
-a 11 -b -c
11
3
b 4
c 5
5
./getopts.sh

3,getopt(一個(gè)外部工具)
具體用用法可以 man getopt
#-o表示短選項(xiàng),兩個(gè)冒號(hào)表示該選項(xiàng)有一個(gè)可選參數(shù),可選參數(shù)必須緊貼選項(xiàng),如-carg 而不能是-c arg
#--long表示長(zhǎng)選項(xiàng)
例子,(getopt.sh):

復(fù)制代碼 代碼如下:

#!/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表示短選項(xiàng),兩個(gè)冒號(hào)表示該選項(xiàng)有一個(gè)可選參數(shù),可選參數(shù)必須緊貼選項(xiàng)
#如-carg 而不能是-c arg
#--long表示長(zhǎng)選項(xiàng)
#"$@"在上面解釋過(guò)
# -n:出錯(cuò)時(shí)的信息
# -- :舉一個(gè)例子比較好理解:
#我們要?jiǎng)?chuàng)建一個(gè)名字為 "-f"的目錄你會(huì)怎么辦?
# mkdir -f #不成功,因?yàn)?f會(huì)被mkdir當(dāng)作選項(xiàng)來(lái)解析,這時(shí)就可以使用
# mkdir -- -f 這樣-f就不會(huì)被作為選項(xiàng)。
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 會(huì)重新排列參數(shù)的順序,也就是改變$1,$2...$n的值,這些值在getopt中重新排列過(guò)了
eval set -- "$temp"
#經(jīng)過(guò)getopt的處理,下面處理具體選項(xiàng)。
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

運(yùn)行命令:
復(fù)制代碼 代碼如下:

./getopt.sh --b-long abc -a -c33 remain
option b, argument `abc'
option a
option c, argument `33'
remaining arguments:
--> `remain'

以上就是有關(guān)linux shell命令行選項(xiàng)與參數(shù)用法的詳細(xì)內(nèi)容,希望對(duì)大家有所幫助。
您可能感興趣的文章:
  • linux命令詳解之useradd命令使用方法
  • Linux top命令的用法詳細(xì)詳解
  • linux之cut命令的用法
  • linux系統(tǒng)sudo命令詳解
  • Linux 入門常用命令 password — 修改密碼,改變用戶
  • Python執(zhí)行Linux系統(tǒng)命令的4種方法
  • linux shell腳本學(xué)習(xí)xargs命令使用詳解
  • Linux中rz命令和sz命令使用詳解大全
  • Linux ls命令參數(shù)詳解
  • Linux du命令查看文件夾大小并按降序排列
  • Linux常見(jiàn)基本命令與用法大全

標(biāo)簽:金昌 婁底 馬鞍山 淘寶邀評(píng) 巴彥淖爾 赤峰 許昌 邵陽(yáng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《linux shell命令行選項(xiàng)與參數(shù)用法詳解》,本文關(guān)鍵詞  linux,shell,命令行,選項(xiàng),與,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《linux shell命令行選項(xiàng)與參數(shù)用法詳解》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于linux shell命令行選項(xiàng)與參數(shù)用法詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章