shell脚本值if语句
Posted @@
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本值if语句相关的知识,希望对你有一定的参考价值。
在shell脚本中的if语句的语法和java中或者C语言中的语法格式是不一样的,具体的语法格式如下所示:
整数变量表达式
if [ a -eq b ] //== equal
if [ a -ne b ] //!= not equal
if [ a -ge b ] //>= greater equal
if [ a -gt b ] //> greater than
if [ a -le b ] //<= less equal
if [ a -lt b ] //< less than
if [ $age -lt 20 ]; then echo young ; elif [ $age -le 40 ]; then echo middle ; else echo old; fi
//判断是否是文件
if [ -f 1.txt ] ; then echo "1.txt是文件" ; else echo "1.txt不是文件" ; f
参数指定:
============================================
$? //命令的返回值存储变量
$# //参数个数
$1 //第1个参数
$0 //当前脚本(命令)名称
[email protected] //取出所有参数
以上是关于shell脚本值if语句的主要内容,如果未能解决你的问题,请参考以下文章