预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共134页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

第5章Linux的shell编程5.1什么是shell5.2几种流行的shell几种流行的shell(续)5.3shell程序设计如果要执行该脚本,还必须使其可执行。 chmod+xfilename 然后,您可以通过输入:./filename来执行您的脚本。$catfirstscript.sh #!/bin/sh echo“Youarewelcometousebase.” echo“Currentworkdirectoryis$PWD.” echo“Youare$LOGNAME.” 增加执行权限 $chmod+xfirstscript.sh 开始运行程序: $./firstscript.sh执行结果:5.4shell基础编程shell变量(续)5.4.1.1本地变量(用户自定义变量)(1)显示变量(2)清除变量:(3)显示所有本地shell变量:(4)结合变量值(5)设置变量的默认值$color=blue $unsetcolor $echo"Theskyis${color:-grey}today" Theskyisgreytoday $echo${color} $改变变量的值,格式如下:(6)使用变量来保存系统命令参数(7)设置只读变量5.4.1.2环境变量(1)设置环境变量环境变量(续)(4)set命令(5)将变量导出到子进程将变量导出到子进程(续)显示结果$catfather2 #!/bin/sh #father2script echo"thisisthefather" FILM="AFewGoodMen" echo"Ilikethefilm:$FILM" #callthechildscript #butexportvariblefirst exportFILM#在调用脚本前导出变量 ./child echo"backtofather" echo"andthefilmis:$FILM"输出结果$./father25.4.1.3位置变量参数位置变量参数(续)(1)在脚本中使用位置参数输出结果(2)向系统命令传递参数5.4.1.4预定义变量预定义变量(续)(1)最后的退出状态5.4.2条件测试测试文件状态(续)测试文件scores.txt是否可写简单的算术运算数值数据处理(1)let命令$echo“Thevalueofcis$c.” Thevalueofcis21. $let“a*=b” $echo“Thenewvalueofais$a;theproductofaandb.” Thenewvalueofais104;theproductofaandb.Bash扩展expr命令(2)测试时使用逻辑操作符号(3)字符串测试String_operator可以为:比较两个字符串是否相等(4)数值测试numeric_operator一般为:测试两个数是否相等测试两个表达式5.4.3控制流结构(1)if语句也可采用如下格式:if[expression1];thencommand-list[elif[expression2];thenthen-command-list]…[elseelse-command-list]fi三种典型的if结构第3种if语句 ifexpression1 then then-commands elifexpression2 thenelif1-commands elifexpression3 thenelif2-commands… elseelse-commands fi例如:(2)case语句case语句(续)$catcaseexample.sh #!/bin/sh echo–n"Doyouwanttocontinuethisoperation?[n]" readyesno case$yesnoin y|Y|Yes|yes) echo"systemwillcontinuethisoperation" ;;n|N|no|NO) echo"systemwillskipthisoperation" ;; *) echo"Incorrectinput" exit1 ;; esac(3)for语句第二种形式是:$catsimplefor.sh #!/bin/sh foriin13579 do echo$I done(4)while和until循环$catwhileexample.sh #!/bin/sh whilereadstring do echo”yourstringis$string” done echo'Thankyou,Bye!'#!/bin/bash #programtest_while # count=1 while[-n"$*"] do echo"Thisisparameternumber$c