S7、批处理操作接口4
S7、批处理操作接口41、测试文件c/thread.c是否存在test-ec/thread.cecho$?或者[-ec/thread.c]echo$?
S7、批处理操作接口42、编写Shell脚本文件testrwx.sh,对文件拥有的属性进行判断#!/bin/bashread-p你想测试哪个文件?filenameif[!-e$filename];thenecho这个文件不存在。#exit1fiif[-r$filename];thenecho$filename是可读的。#exit1fiif[-w$filename];thenecho$filename是可写的。#exit1fiif[-x$filename];thenecho$filename是可执行的。#exit1fi
S7、批处理操作接口4运行:../testrwx.sh你想测试哪个文件?c/thread.cc/thread.c是可读的。c/thread.c是可写的。
S7、批处理操作接口43、测试字符串str1是否为空,为空则返回0str1=test-z$str1echo$?4、测试字符串str1是否为空,非空则返回0,为空返回非0test-n$str1echo$?
S7、批处理操作接口45、比较str1与str2是否相同,相同则返回0,否则返回非0[$str1=$str2]echo$?6、比较str1与str2是否不同,不同则返回0[$str1!=$str2]echo$?
S7、批处理操作接口47、比较str1与str2的大小[$str1\$str2]echo$?[$str1\$str2]echo$?
S7、批处理操作接口48、建立文件comint.sh,进行整数比较#!/bin/sha=10b=20if[$a-eq$b]thenecho$a-eq$b:aisequaltobelseecho$a-eq$b:aisnotequaltobfi
S7、批处理操作接口4if[$a-ne$b]thenecho$a-ne$b:aisnotequaltobelseecho$a-ne$b:aisequaltobfiif[$a-gt$b]thenecho$a-gt$b:aisgreaterthanbelse
S7、批处理操作接口4echo$a-gt$b:aisnotgreaterthanbfiif[$a-lt$b]thenecho$a-lt$b:aislessthanbelseecho$a-lt$b:aisnotlessthanbfiif[$a-ge$b]then
S7、批处理操作接口4echo$a-ge$b:aisgreaterorequaltobelseecho$a-ge$b:aisnotgreaterorequaltobfiif[$a-le$b]thenecho$a-le$b:aislessorequaltobelseecho$a-le$b:aisnotlessorequaltobfi
S7、批处理操作接口4运行:../comint.sh10-eq20:aisnotequaltob10-ne20:aisnotequaltob10-gt20:aisnotgreaterthanb10-lt20:aislessthanb10-ge20:aisnotgreaterorequaltob10-le20:aislessorequaltob
S7、批处理操作接口49、建立文件log.sh,进行逻辑运算#!bin/shiv=15if[!$iv-lt5-o$iv-gt30];thenecho$iv不小于5或大于30fiif[$iv-lt20-a$iv-gt10];thenecho$iv小于20且大于10fi
S7、批处理操作接口4运行:../log.sh15不小于5或大于3015小于20且大于10
S7、批处理操作接口410、建立文件score.sh,使用if进行成绩等级的判断#!/