1、第1页,共32页。第2页,共32页。第3页,共32页。第4页,共32页。第5页,共32页。:#!/bin/sh#!/bin/sh#ShowHello.sh#ShowHello.sh#To show hello to somebody#To show hello to somebodyecho-n“Enter Your Name:”echo-n“Enter Your Name:”read NAMEread NAMEecho“Hello,$NAME!”echo“Hello,$NAME!”第6页,共32页。第7页,共32页。第8页,共32页。第9页,共32页。第10页,共32页。第11页,共32页。
2、第12页,共32页。第13页,共32页。第14页,共32页。第15页,共32页。第16页,共32页。ugo类型 一个文件由1个类型和9个权限位来描述,9个权限位分为3组,每组3个权限位,具体表示如下所示:u:user,文件的属主g:group,文件的属主所在的组,属组o:other,其他的用户a:all,以上三种人第17页,共32页。4+2+1=74+2=64+1=5所以该文件/目录具有的权限为:765第18页,共32页。chmod命令示例假定haison.c最初具有这样的权限rwxrwxrwx,连续操作如下第19页,共32页。第20页,共32页。第21页,共32页。本地变量:用户自定义的变量
3、。环境变量:用于所有用户变量,用于用户进程前,必须用export命令导出。位置变量:$0(脚本名),$1-$9:脚本参数。特定变量:脚本运行时的一些相关信息。第22页,共32页。第23页,共32页。第24页,共32页。第25页,共32页。选择结构循环结构if语句:if then else 提供条件测试case 语句:允许匹配模式、单词或值for:每次依次处理列表内的信息,直至循环耗尽。until:不常用。条件在循环末尾,至少执行一次。while:条件在循环头部。第26页,共32页。或第27页,共32页。#!/bin/sh#caseTest#to test the method of caseU
4、SER=whoamicase$USER in root)echo You can do all the operations ;Dave)echo You can do some operations ;*)echo Sorry,you can not do anything ;esac 第28页,共32页。第29页,共32页。#!/bin/sh#untilTest#to test the mothod of untilIS_ROOT=who|grep rootuntil$IS_ROOT do IS_ROOT=who|grep root sleep 5doneecho Watch it.root in!第30页,共32页。#!/bin/sh#whileTest#to test the method of while COUNTER=0while$COUNTER -lt 10 do echo$COUNTER COUNTER=expr$COUNTER+1donewhile read LINEdo echo$LINEdone names.txt第31页,共32页。演讲完毕,谢谢观看!第32页,共32页。