处理用户输入

demo1
简单的读取单个参数

#!/bin/bash
#ussing one command line parameter

factorial=1
for (( number = 1; number <= $1; number++ ))
do
    factorial=$[ $factorial * $number ]
done
echo the factorial of $1 is $factorial

//
hadoop@master:~/shell_test/cin$ ./test1 3
the factorial of 3 is 6
hadoop@master:~/shell_test/cin$ ./test1 4
the factorial of 4 is 24

注意:
如果有多个参数,依次为$1 - $9,如果超过9个
如10,则为${10}

demo2
读取程序名字

#!/bin/bash
#testting $0 parameter

echo The command enter is: $0

#not include path
name=`basename $0`

echo the commadn name is $name

//result
hadoop@master:~/shell_test/cin$ ./test2
The command enter is: ./test2
the commadn name is test2

demo3
测试参数是否存在

#!/bin/bash
#testing parameter before use

if [ -n "$1" ]
then
    echo Hello $1 gland to meet you
else
    echo "sorry, you dont identify yourself."
fi
//result
hadoop@master:~/shell_test/cin$ ./test3
sorry, you dont identify yourself.
hadoop@master:~/shell_test/cin$ ./test3 a
Hello a gland to meet you

特殊参数变量

(1)$#
$# 统计命令行参数个数
if [ $# -ne 2 ]
then
fi
注意在字符串中直接输出需要,${!#}
(2) $* $@
$* 会将所有参数当成一个参数
$@ 变量会单独处理每个参数

demo4
shift移动变量

#!/bin/bash
# demonstrating the shift command

count=1
while [ -n "$1" ]
do
    echo  "Parameter #$count = $1"
    count=$[ $count +1 ]
    shift
done

//result
hadoop@master:~/shell_test/cin$ ./test4 kfd fjdslf
Parameter #1 = kfd
Parameter #2 = fjdslf
注意:
shift 2 移动两个参数

demo5
(1)处理简单选项

#!/bin/bash
#extracting command line options as parameters

while [ -n "$1" ]
do
    case "$1" in
    -a) echo "Fond the -a option" ;;
    -b) echo "Fond the -b option" ;;
    -c) echo "Found the -c option" ;;
    *) echo "$1 is not an option" ;;
    esac
    shift
done
//
hadoop@master:~/shell_test/cin$ ./test5 -c
Found the -c option
hadoop@master:~/shell_test/cin$ ./test5 -b
Fond the -b option
hadoop@master:~/shell_test/cin$ ./test5 -d
-d is not an option

(2)分离参数和选项

#!/bin/bash
#extracting command line options as parameters
#-- as a seperate 

while [ -n "$1" ]
do
    case "$1" in
    -a) echo "Fond the -a option" ;;
    -b) echo "Fond the -b option" ;;
    -c) echo "Found the -c option" ;;
    --) shift
        break ;;
    *) echo "$1 is not an option" ;;
    esac
    shift
done

count=1
for parm in $@
do
    echo "Parametrer #$count : $parm"
    count=$[ $count + 1 ]
done

//
hadoop@master:~/shell_test/cin$ ./test6 -a -b -c -- fjd fdsjfld jflds
Fond the -a option
Fond the -b option
Found the -c option
Parametrer #1 : fjd
Parametrer #2 : fdsjfld
Parametrer #3 : jflds
hadoop@master:~/shell_test/cin$ 

(3)处理带值的选项

#!/bin/bash
#extracting command line options as parameters
#-- as a seperate 

while [ -n "$1" ]
do
    case "$1" in
    -a) echo "Fond the -a option" ;;
    -b) param=$2
        echo "Found the -b option , with paramerter value $param"
        shift  ;;
    -c) echo "Found the -c option" ;;
    --) shift
        break ;;
    *) echo "$1 is not an option" ;;
    esac
    shift
done

count=1
for parm in $@
do
    echo "Parametrer #$count : $parm"
    count=$[ $count + 1 ]
done
//result
hadoop@master:~/shell_test/cin$ ./test7 -a -b nihao -c
Fond the -a option
Found the -b option , with paramerter value nihao
Found the -c option
hadoop@master:~/shell_test/cin$ 

demo6
获取用户输入

#!/bin/bash
#testing the read command

echo -n "Enter your name"
read name
echo "Heollo $name , welcome to my program"

//
hadoop@master:~/shell_test/cin$ ./test8
Enter your namechenhanghang
Heollo chenhanghang , welcome to my program
注意:
(1)-p 直接指定提示符号
read -p "input your name" name
(2)如果不指定变量名字,则会把变量放在 REPLY中
(3)-s 以隐藏方式读取

demo7
超时退出

#!/bin/bash
#timing the data entry

if read -t 5 -p "please input your name:" name
then
    echo "Hello $name, welcome to my script"
else
    echo
    echo "Sorry, too slow"
fi

//
hadoop@master:~/shell_test/cin$ ./test9
please input your name:
Sorry, too slow
hadoop@master:~/shell_test/cin$

demo9
限定字符的个数

#!/bin/bash
#getting just one character of input

read -n1 -p "Do you want to continue [Y/N] " answer
case $answer in
Y | y) echo
    echo "fine ,continue on..." ;;
N | n) echo
    echo "OK googbye"
    exit ;;
esac
echo "This is the end of the script"

//result
hadoop@master:~/shell_test/cin$ ./test10
Do you want to continue [Y/N] Y
fine ,continue on...
This is the end of the script
hadoop@master:~/shell_test/cin$ 
hadoop@master:~/shell_test/cin$ ./test10
Do you want to continue [Y/N] N
OK googbye
hadoop@master:~/shell_test/cin$ 

demo10

#!/bin/bash
#reading data from file

count=1

cat q | while read line
do
    echo "Line $count: $line"
    count=$[ $count +1 ]
done
echo Finish processing the data

//result
hadoop@master:~/shell_test/cin$ ./test11
Line 1: #!/bin/bash
Line 2: #getting just one character of input
Line 3: 
Line 4: read -n1 -p "Do you want to continue [Y/N] " answer
Line 5: case $answer in
Line 6: Y | y) echo
Line 7: echo "fine ,continue on..." ;;
Line 8: N | n) echo
Line 9: echo "OK googbye"
Line 10: exit ;;
Line 11: esac
Line 12: echo "This is the end of the script"
Line 13: 
Finish processing the data
hadoop@master:~/shell_test/cin$ 

demo 12
getopts 工具获取命令行参数

#!/bin/bash
#processing options and parameters with getopts

while getopts :ab:cd opt
do
    case "$opt" in
    a) echo "Found the -a option" ;;
    b) echo "Found the -b option with the value $OPTARG" ;;
    c) echo "Found the -c option" ;;
    d) echo "Found the -d option" ;;
    *) echo "Unhnown option: $opt" ;;
    esac
done
shift $[ $OPTIND -1 ]

count=1
for param in "$@"
do
    echo "Parameter $count: $param"
    count=$[ $count + 1 ]
done

adoop@master:~/shell_test/cin$ ./test12 -a -b test1 -d test2 test3 test4
Found the -a option
Found the -b option with the value test1
Found the -d option
Parameter 1: test2
Parameter 2: test3
Parameter 3: test4
hadoop@master:~/shell_test/cin$ ./test12 -a -b  -d test2 test3 test4
Found the -a option
Found the -b option with the value -d
Parameter 1: test2
Parameter 2: test3
Parameter 3: test4
hadoop@master:~/shell_test/cin$ 
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容