20.5 Shell脚本中的逻辑判断 格式1:if 条件 ; then 语句; fi1. 创建if1.sh测试脚本:[root@hao-01 ~]# vi if1.sha=5,如果a大于3,满足这个条件,显示ok添加内容:#!/bin/basha=5if [ $a -gt 3 ]then echo okfi2. 执行if1.sh脚本:[root@hao-01 ~
分类:
系统相关 时间:
2018-04-18 16:25:35
阅读次数:
218
Shell脚本中的逻辑判断格式1:if条件;then语句;fi(常用)#以命令的方式表达[root@garytao-01~]#foriin`seq15`;doecho$i;done12345[root@garytao-01~]#foriin`seq15`>do>echo$i>done12345[root@garytao-01~]#a=5[root@garytao-01~]#if[
分类:
系统相关 时间:
2018-02-06 21:33:42
阅读次数:
218
-20.5shell脚本中的逻辑判断
-20.6文件目录属性判断
-20.7if特殊用法
-20.8/20.9case判断
#20.5Shell脚本中的逻辑判断
-很多脚本可以直接用命令执行,比如之前的那个
```
[root@aming-01~]#foriin`seq15`;doecho$i;done
1
2
3
4
5
[root@aming-01~]#foriin`seq15`
>do
>e..
分类:
系统相关 时间:
2017-11-22 22:06:17
阅读次数:
350
笔记内容:20.5shell脚本中的逻辑判断20.6文件目录属性判断20.7if特殊用法20.8/20.9case判断笔记日期:2017-11-2220.5shell脚本中的逻辑判断在所有的编程语言中都会有if语句来进行逻辑判断,所以在shell中也不例外。Shell的if语句的判断条件和其他编程语言一样写在if关键字的那..
分类:
系统相关 时间:
2017-11-22 20:02:43
阅读次数:
487
扩展:select用法http://www.apelearn.com/bbs/thread-7950-1-1.html20.5Shell脚本中的逻辑判断格式1:if条件;then语句;fi1.创建if1.sh测试脚本:[root@hao-01~]#viif1.sha=5,如果a大于3,满足这个条件,显示ok添加内容:#!/bin/basha=5if[$a-gt3]thenechookfi2.执行if1.sh脚..
分类:
系统相关 时间:
2017-09-18 18:25:02
阅读次数:
208
shell脚本中的逻辑判断 if 逻辑判断。在shell中if判断的基本语法为: 1)不带else if 判断语句; then command fi if 判断语句; then command fi 例如: [root@localhost sbin]# cat if1.sh #! /bin/bash ...
分类:
系统相关 时间:
2017-09-03 11:11:07
阅读次数:
173