LinuxShell编程四之处理用户输入

说明:本文部分内容均摘取自书籍《Linux命令行与shell脚本编程大全》,版权归原作者所有。《Linux命令行与shell脚本编程大全》(第三版)第十四章学习总结

第十四章:处理用户输入

本章内容

传递参数
跟踪参数
移动变量
处理选项
将选项标准化
获取用户输入

14.1 命令行参数

14.1.1 读取参数

bash shell会将一些称为位置参数的特殊变量分配给输入到命令行中的所有参数。

位置参数变量是标准的数字

$0是程序名
$1是第一个参数
$2是第二个参数
依次类推,知道第九个参数$9

编写test1.sh脚本

#!/bin/bash

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

执行命令

./test1.sh 5

编写test2.sh脚本

#!/bin/bash

total=$[ $1 * $2 ]
echo The first paramter is $1.
echo The second paramter is $2.
echo Thetotal paramter is $total.

执行命令

./test2.sh 2 5

编写test3.sh脚本

#!/bin/bash
echo Hello $1,glad to meet you.

执行命令

./test3.sh 'Rich Blum'

如果脚本需要的命令行参超过9个时,使用${10}形式获取

编写test4.sh脚本

#!/bin/bash
total=$[ ${10} * ${11} ]
echo The tenth parameter is ${10}
echo The eleventh parameter is ${11}
echo The total is $total

执行命令

./test4.sh 1 2 3 4 5 6 7 8 9 10 11 12

14.1.2 读取脚本名

使用$0参数获取shell在命令行启动的脚本名

编写test5.sh脚本

#!/bin/bash
echo The zero parameter is set to:$0

执行命令

bash test5.sh 

使用basename命令获取不包含路径的脚本名

编写test5b.sh

#!/bin/bash
name=$(basename $0)
echo
echo The script name is:$name

使用这种方法来编写基于脚本名执行不同功能的脚本

编写test6.sh脚本

#!/bin/bash
name=$(basename $0)

if [ $name = "addem" ]
then
    total=$[ $1 + $2 ]
elif [ $name = "multem" ]
then
    total=$[ $1 * $2 ]
fi

echo
echo The calculated value is $total

执行命令

cp test6.sh addem
cp test6.sh multem
./addem 2 5
./multem 2 5

14.1.3 测试参数

脚本在使用参数前,需要检查其中是否存在数据

编写test7.sh脚本

#!/bin/bash
if [ -n "$1" ]
then
    echo Hello $1,glad to meet you.
else
    echo "Sorry,you did not identify yourself."
fi

执行命令

./test7.sh Rich
./test7.sh

14.2 特殊参数变量

14.2.1 参数统计

特殊变量$#含有脚本运行时携带的命令行参数的个数

编写test8.sh脚本

#!/bin/bash
echo There were $# parameters supplied.

执行命令

./test8.sh
./test8.sh 1 2 3 4 5
./test8.sh "Rich Blum"

编写test9.sh脚本

#!/bin/bash
if [ $# -ne 2 ]
then
    echo
    echo Usage:test9.sh a b
    echo
else
    total=$[ $1 + $2 ]
    echo
    echo The total is $total
    echo
fi

执行命令

./test9.sh
./test9.sh 10
./test9.sh 10 15

获取最后一个命令行参数变量

编写test10.sh脚本

#!/bin/bash
params=$#
echo
echo The total parameter is $params
echo The last parameter is ${!#}
echo

执行命令

./test10.sh
./test10.sh 1 2 3
./test10.sh 1 2 3 4

14.2.2 抓取所有的数据

使用$*和$@变量来访问所有的参数
使用for命令遍历这两个变量时
$*变量会将所有参数当成单个参数
$@变量会单独处理每个参数

编写test11.sh脚本

#!/bin/bash
echo
echo "Using the \$* method:$*"
echo "Using the \$@ method:$@"
echo

执行命令

./test11.sh rich barbara katie jseeica

编写test12.sh脚本

#!/bin/bash
echo
count=1
for param in "$*"
do
    echo "\$* parameter #Scount = $param"
    count=$[ $count + 1 ]
done
echo
count=1
for param in "$@"
do
    echo "\$@ parameter #Scount = $param"
    count=$[ $count + 1 ]
done

执行命令

./test12.sh rich barbara katie jseeica

14.3 移动变量

shift命令会根据所在的相对位置来移动命令行参数

敲门:使用shift命令的时候要小心。如果某个参数被移除,它的值就被丢弃了,无法再恢复

编写test13.sh脚本

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

执行命令

./test13.sh rich barbara katie jessica

编写test14.sh脚本

#!/bin/bash
echo
echo "The original parameters: $*"
shift 2
echo "Here's the new first parameter: $1"

执行命令

./test14.sh 1 2 3 4 5

14.4 处理选项

14.4.1 查找选项

1.处理简单选项

在提取每个单独参数时,用case语句来判断某个参数是否为选项

编写test15.sh脚本

#!/bin/bash
echo
while [ -n "$1" ]
do
    case "$1" in
        -a) echo "Found the -a option" ;;
        -b) echo "Found the -b option" ;;
        -c) echo "Found the -c option" ;;
        *) echo "Found the an option" ;;
    esac
    shift
done

执行命令

./test15.sh -a -b -c -d

2.分离参数和选项

Linux通过双破折线(--)来区分选项和参数

编写test16.sh脚本

#!/bin/bash
echo
while [ -n "$1" ]
do
    case "$1" in
        -a) echo "Found the -a option" ;;
        -b) echo "Found the -b option" ;;
        -c) echo "Found the -c option" ;;
        --) shift
            break ;;
        *) echo "$1 is not an option" ;;
    esac
    shift
done
#
count=1
for param in $@
do
    echo "Parameter #count:$param"
    count=$[ $count+1 ]
done

执行命令

./test16.sh -a -b -c test1 test2 test3
./test16.sh -a -b -c -- test1 test2 test3

3.处理带值的选项

有些选项会带上一个额外的参数值,脚本必须能够检测到并正确处理

编写test17.sh脚本

#!/bin/bash
echo
while [ -n "$1" ]
do
    case "$1" in
        -a) echo "Found the -a option" ;;
        -b) param="$2"
            echo "Found the -b option,with parameter value $param"
            shift ;;
        -c) echo "Found the -c option" ;;
        --)
            shift
            break ;;
        *) echo "$1 is not an option";;
    esac
    shift
done
#
count=1
for param in $@
do
    echo "Parameter #$count:$param"
    count=$[ $count+1 ]
done

执行命令

./test17.sh -a -b test1 -d
./test17.sh -b test1 -a -d

14.4.2 使用getopt命令

getopt命令是一个在处理命令选项和参数时非常方便的工具。它能够识别命令行参数,从而在脚本中解析它们时更方便。

1.命令的格式

命令格式:getopt optstring parameters
命令说明:getopt命令可以接受一系列任意形式的命令行选项和参数

敲门:getopt命令有一个更高级的版本叫做getopts(注意这是复数形式)。getopts命令会在本章随后部分降到。因为这两个命令的拼写几乎一摸一样,所以很容易混淆,一定要小心。

命令演示:getopt ab:cd -a -b test1 -cd test2 test3
演示结果:-a -b test1 -c -d – test2 test3
演示说明:optstring定义了四个有效选项字母:a,b,c和d。冒号(:)被放在了字母b后面,因为b选项需要一个参数值。当getopt命令运行时,它会检查提供的参数列表(-a -b test1 -c -d – test2 test3),并基于提供的optstring进行解析。注意,它会自动将-cd选项分成两个单独的选项,并插入双破折线来分割行中的额外参数。

getopt说明

如果指定了一个不在optstring中的选项,getopt命令会产生一条错误的消息
如果想忽略这条错误消息,可以在命令后加-q选项
getopt命令选项必须出现在optstring之前
getopt命令并不擅长处理带空格和引号的参数值

2.在脚本中使用getopt

编写test18.sh脚本

#!/bin/bash
#
set -- $(getopt -q ab:cd "$@")
#
echo
while [ -n "$1" ]
do
    case "$1" in
        -a) echo "Found the -a option" ;;
        -b) param="$2"
            echo "Found the -b option, with parameter value $param"
            shift ;;
        -c) echo "Found the -c option" ;;
        -d) echo "Found the -d option" ;;
        --) shift
            break ;;
        *)  echo "$1 is not an option" ;;
    esac
    shift
done
#
count=1
for param in "$@"
do
    echo "Parameter #$count:$param"
    count=$[ $count+1 ]
done

执行命令

./test18.sh -ac
./test18.sh -a -b test1 -cd test2 test3 test4

14.4.3 使用更高级的getopts

getopts命令(注意是复数)内建于bash shell。

命令格式:getopts optstring variable
命令说明: optstring与 getopt命令中的optstring相同

使用OPTARG环境变量获取选项的参数值

编写test19.sh脚本

#!/bin/bash
echo
while getopts :ab:c opt
do
    case "$opt" in
        a) echo "Found the -a option" ;;
        b) echo "Found the -b option, with value $OPTARG" ;;
        c) echo "Found the -c option" ;;
        *) echo "Unknown option: $opt" ;;
    esac
done

执行命令

./test19.sh -ab test1 -c
./test19.sh -b "test1 test2" -a
./test19.sh -abtest1
./test19.sh -acde

使用shift命令和OPTIND值来移动参数

编写test20.sh脚本

#!/bin/bash
echo
while getopts :ab:cd opt
do
    case "$opt" in
    a) echo "Found the -a option" ;;
    b) echo "Found the -b option, with value $OPTARG" ;;
    c) echo "Found the -c option" ;;
    d) echo "Found the -d option" ;;
    *) echo "Unknown option: $opt" ;;
    esac
done
#
shift $[ $OPTIND - 1 ]
#
echo
count=1
for param in "$@"
do
    echo "Parameter $count: $param"
    count=$[ $count+1 ]
done

执行命令

./test20.sh -a -b test1 -d test2 test3 test4

14.5 将选项标准化

在创建shell脚本时,可以决定使用哪些字母以及它们的用法

但有些字母选项在linux世界里已经拥有了某种程度的标准含义

常用的Linux命令选项

选项:描述
-a:显示所有对象
-c:生成一个计数
-d:指定一个目录
-e:扩展一个对象
-f:指定读入数据的文件
-h:显示命令的帮助信息
-i:忽略文本大小写
-l:产生输出的长格式版本
-n:使用非交互模式(批处理)
-o:将所有输出重定向到指定的输出文件
-q:以安静模式运行
-r:递归地处理目录和文件
-s:以安静模式运行
-v:生成详细输出
-x:排除某个对象
-y:对所有问题回答yes

14.6 获得用户输入

14.6.1 基本的读取

read命令从标准输入(键盘)或另一个文件描述符中接受输入。

编写test21.sh脚本

#!/bin/bash
echo -n "Enter your name:"
read name
echo "Hello $name,welcome to my program."

编写test22.sh脚本

#!/bin/bash
read -p "Please enter your age:" age
days=$[ $age * 365]
echo "That makes you over $days days old!"

编写test23.sh脚本

#!/bin/bash
read -p "Enter your name:" first last
echo "Checking data for $last, $first..."

read命令会将它收到的任何数据都放进特殊环境变量REPLY中

编写test24.sh脚本

#!/bin/bash
read -p "Enter your name:"
echo
echo Hello $REPLY, welcome to my program.

14.6.2 超时

使用read命令时,可以使用-t选项指定read命令等待输入的秒数。当计数器过期后,read命令返回一个非零退出状态码

编写test25.sh

#!/bin/bash
if read -t 5 -p "Please enter your name:" name
then
    echo "Hello $name,welcome to my script"
else
    echo
    echo "Sorry,too slow!"
fi

使用read命令-n选项统计输入的字符数。当输入的字符达到预设的字符数时,就自动退出,将输入的数据赋给变量

编写test26.sh脚本

#!/bin/bash
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,goodbay"
        exit;;
esac
echo "The is the end of the script"

14.6.3 隐藏方式读取

使用-s选项,隐藏read命令中输出的数据,避免直接出现在显示器上

编写test27.sh命令

#!/bin/bash
read -s -p "Enter your password:" pass
echo
echo "Is your password really $pass?"

14.6.4 从文件中读取

使用read读取Linux系统上文件里保存的数据。每次调用read命令时,它都会从文件中读取一行数据。当文件中没有内容时,read命令退出并返回非零退出状态码

编写test文本

One
Two
Three

编写test28.sh脚本

#!/bin/bash
count=1
cat test | while read line
do
    echo "line $count: $line"
    count=$[ $count+1 ]
done
echo "Finished processing the file"

14.7 小结

本章讲述了3种不同的方法来从脚本用户处理获得数据。命令行参数允许用户运行脚本时直接从命令行输入数据。脚本通过位置参数来取回命令行参数并将它们赋给变量

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

推荐阅读更多精彩内容