码迷,mamicode.com
首页 > 其他好文 > 详细

学习六十四

时间:2018-05-31 00:28:25      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:linux学习

5月30日任务
20.5 shell脚本中的逻辑判断
20.6 文件目录属性判断
20.7 if特殊用法
20.8/20.9 case判断

shell脚本中的逻辑判断

格式1:if 条件 ; then 语句; fi
格式2:if 条件; then 语句; else 语句; fi
格式3:if …; then … ;elif …; then …; else …; fi
逻辑判断表达式:if [ $a -gt $b ]; if [ $a -lt 5 ]; if [ $b -eq 10 ]等 -gt (>); -lt(<); -ge(>=); -le(<=);-eq(==); -ne(!=) 注意到处都是空格
可以使用 && || 结合多个条件
if [ $a -gt 5 ] && [ $a -lt 10 ]; then
if [ $b -gt 5 ] || [ $b -lt 3 ]; then

文件目录属性判断

[ -f file ]判断是否是普通文件,且存在
[ -d file ] 判断是否是目录,且存在
[ -e file ] 判断文件或目录是否存在
[ -r file ] 判断文件是否可读
[ -w file ] 判断文件是否可写
[ -x file ] 判断文件是否可执行

if特殊用法

if [ -z "$a" ]??这个表示当变量a的值为空时会怎么样
if [ -n "$a" ] 表示当变量a的值不为空
if grep -q ‘123‘ 1.txt; then??表示如果1.txt中含有‘123‘的行时会怎么样
if [ ! -e file ]; then 表示文件不存在时会怎么样
if (($a<1)); then …等同于 if [ $a -lt 1 ]; then…
[ ] 中不能使用<,>,==,!=,>=,<=这样的符号

case判断

格式 case??变量名 in?? ?? ?? ?? ?? ?? ??
value1)? ?? ?? ?? ?? ?? ?? ?? ??
command? ?? ?? ?? ?? ?? ?? ?? ?
;;? ?? ?? ?? ?? ?? ??
value2)? ?? ?? ?? ?? ?? ?? ?? ??
command? ?? ?? ?? ?? ?? ?? ?? ??
;;? ?? ?? ?? ?? ?? ?? ?
*) ?? ?? ?? ?? ?? ?? ?
commond?? ?? ?? ?? ?? ?? ?? ?? ?
;;?? ?? ?? ?? ?? ?? ?
esac
在case程序中,可以在条件中使用|,表示或的意思, 比如? ?
2|3)? ?
command? ?
;;

学习六十四

标签:linux学习

原文地址:http://blog.51cto.com/13583139/2122224

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!