今天放仿照书上写了一个Shell,总结如下:
1、定义变量时,等号两边不能空白。即name = "$1" 这种标准的Java写法是错误的,必须写成
name="$1",否则name就被当成是命令,而非变量
2、传递进来的参数使用"$i"即"$1"、"$2"来提取第i个变量,"$0"个是命令本身,而"$#"表示参数
的个数。
3、if的判断语句[ ]中,判断条件必须和"["或"]"有空白隔开即 if [ "$#" != 1 ] 而不能["$#" !=1]
4、如果执行命令则命令写在"`"中,而不是"'"中,这点要特别注意,"`"符和"~"通常是同一个键,在
键盘的左上方位置。
5、追踪shell的执行过程命令:
sh -x hello.sh。执行此命令后,执行的结果将变量全部替代为执行值。
6、读入和使用变量:
read -p "Please input your first name: " firstname
read -p "Please input your last name: " lastname
echo -e "\nYour full name is: $firstname $lastname"
7、数值运算:
read -p "first number: " firstnu
read -p "second number: " secnu
total=$(($firstnu*$secnu))
另外一种方式:
declare -i total=$firstnu*$secnu
双括号和定义整型都可以做到数值的运算功能
8、
利用 test 指令的测试功能
test -e /dmtsai && echo "exist" || echo "Not exist"
测试的标志 |
代表意义 |
1. 关于某个档名的‘类型’侦测(存在与否),如 test -e filename |
-e |
该‘档名’是否存在?(常用) |
-f |
该‘档名’是否为档案(file)?(常用) |
-d |
该‘档名’是否为目录(directory)?(常用) |
-b |
该‘档名’是否为一个 block device 装置? |
-c |
该‘档名’是否为一个 character device 装置? |
-S |
该‘档名’是否为一个 Socket 档案? |
-p |
该‘档名’是否为一个 FIFO (pipe) 档案? |
-L |
该‘档名’是否为一个连结档? |
2. 关于档案的权限侦测,如 test -r filename |
-r |
侦测该档名是否具有‘可读’的属性? |
-w |
侦测该档名是否具有‘可写’的属性? |
-x |
侦测该档名是否具有‘可执行’的属性? |
-u |
侦测该档名是否具有‘SUID’的属性? |
-g |
侦测该档名是否具有‘SGID’的属性? |
-k |
侦测该档名是否具有‘Sticky bit’的属性? |
-s |
侦测该档名是否为‘非空白档案’? |
3. 两个档案之间的比较,如: test file1 -nt file2 |
-nt |
(newer than)判断 file1 是否比 file2 新 |
-ot |
(older than)判断 file1 是否比 file2 旧 |
-ef |
判断 file2 与 file2 是否为同一档案,可用在判断 hard link 的判定上。 主要意义在判定,两个档案是否均指向同一个 inode 哩! |
4. 关于两个整数之间的判定,例如 test n1 -eq n2 |
-eq |
两数值相等 (equal) |
-ne |
两数值不等 (not equal) |
-gt |
n1 大于 n2 (greater than) |
-lt |
n1 小于 n2 (less than) |
-ge |
n1 大于等于 n2 (greater than or equal) |
-le |
n1 小于等于 n2 (less than or equal) |
5. 判定字串的资料 |
test -z string |
判定字串是否为 0 ?若 string 为空字串,则为 true |
test -n string |
判定字串是否非为 0 ?若 string 为空字串,则为 false。
注: -n 亦可省略 |
test str1 = str2 |
判定 str1 是否等于 str2 ,若相等,则回传 true |
test str1 != str2 |
判定 str1 是否不等于 str2 ,若相等,则回传 false |
6. 多重条件判定,例如: test -r filename -a -x filename |
-a |
(and)两状况同时成立!例如 test -r file -a -x file,则 file 同时具有 r 与 x 权限时,才回传 true。 |
-o |
(or)两状况任何一个成立!例如 test -r file -o -x file,则 file 具有 r 或 x 权限时,就可回传 true。 |
! |
反相状态,如 test ! -x file ,当 file 不具有 x 时,回传 true |
shell中使用举例:
echo -e "The program will show you that filename is exist which input by you.\n\n"
read -p "Input a filename : " filename
test -z $filename && echo "You MUST input a filename." && exit 0
# 2. 判断档案是否存在?
test ! -e $filename && echo "The filename $filename DO NOT exist" && exit 0
# 3. 开始判断档案类型与属性
test -f $filename && filetype="regulare file"
test -d $filename && filetype="directory"
test -r $filename && perm="readable"
test -w $filename && perm="$perm writable"
test -x $filename && perm="$perm executable"
# 4. 开始输出资讯!
echo "The filename: $filename is a $filetype"
echo "And the permission are : $perm"
9、
利用判断符号 [ ]
read -p "Please input (Y/N): " yn
[ "$yn" == "Y" -o "$yn" == "y" ] && echo "OK, continue" && exit 0
[ "$yn" == "N" -o "$yn" == "n" ] && echo "Oh, interrupt!" && exit 0
echo "I don't know what is your choise" && exit 0
注意,在[ ]中的变量最好使用""括起来,否则容易出错
举例来说,假如我设定了 name="VBird Tsai" ,然后这样判定:
[root@linux ~]# name="VBird Tsai"
[root@linux ~]# [ $name == "VBird" ]
bash: [: too many arguments
|
为什么呢?因为 $name 如果没有使用双引号刮起来,那么上面的判定式会变成:
[ VBird Tsai == "VBird" ]
而不是我们要的: [ "VBird Tsai" == "VBird" ]
9、shell具体代码如下:
#!/bin/sh
#
# This is a simple shell program
#
# the first line starts with #!,it means to use /bin/sh to explain
# this scirpt
# other lines starting with # means comments,bash ignores these
#
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
name="$1"
ip="163.26.197.1"
exacttime=`date +%Y%m%d`
if [ $# != 1 ]; then
echo "Usage: $0 [username]"
exit
fi
echo "today is $exacttime, your name is $name, from $ip"
echo
echo "Bye-Bye"