linuxshellelse
A. linux shell的if语句
echo "你继续吗?Y or N"
read ANSWER
if [ “$ANSWER” = “Y” -o “$ANSWER” = “y” ] ; then
echo "你选择了$ANSWER";
elif [ “$ANSWER” = “N” -o “$ANSWER” = “n” ] ; then
echo "你选择了$ANSWER";
else
echo "输入错误"
exit
fi
-----你试试
B. 在linux下shell脚本中if中用到or怎么写
linux下shell脚本的逻辑的or用运算符 || 表示,if中用到or的写法实例如下:
a=10
b=20
if[[$a-lt 50||$b-gt 50]]
then
echo"返回 true"
else
echo"返回 false"
fi
其中$a-lt100表示a<50 为真;$b-gt 50 表示b>50为假;真 or 假为真。
所以输出结果为:返回 true
(2)linuxshellelse扩展阅读
1、shell中流程控制if基本语法介绍:
if condition
then
command1
command2 ...
commandN
fi
2、shell中的另一个逻辑运算符and (&&)用法实例介绍:
a=10
b=20
if[[$a-lt100&&$b-gt100]]
then
echo"返回 true"
else
echo"返回 false"
fi
输出结果为:返回 false
C. linux中的shell脚本如何实现 if(条件) { if() {} else{} } else { if(){} else{} } 这种功能
if 条件;then
if 条件;then
代码
else
代码
fi
else
if 条件;then
代码
else
代码
fi
fi
D. linux的shell中ifelse和三目运算哪个快
方法1: uname -a 作用: 查看系统内核版本号及系统名称 方法2: cat /proc/version 作用: 查看目录"/proc"下version的信息,也可以得到当前系统的内核版本号及系统名称
E. linux shell中if 语句想要then后什么也不执行,关键词是什么
你看看这样可以吗
if [ -e ./test19 ]
then
if [ ! -f ./test19 ]
then
touch ./test19
fi
else
touch ./test19
fi
另外你这个程序的逻辑似乎有点问题,如果./test19存在而且是个目录,你再touch ./test19会重名吧
F. linux shell if语句中~是什么意思
if为判断语句,判断某个东西是否达到设定的条件。
1,格式为:
if语句格式
if条件
then
Command
else
Command
fi别忘了这个结尾
2,if的三种条件表达式:
ifcommandthen
if函数then命令执行成功,等于返回0(比如grep,找到匹配)执行失败,返回非0(grep,没找到匹配)
if[expression_r_r_r]then表达式结果为真,则返回0,if把0值引向then
iftestexpression_r_r_rthen表达式结果为假,则返回非0,if把非0值引向then
G. 如何编写这个Linux Shell脚本
#!/bin/bash
echo "Input name"
read name
if [ -d $name ]; then
echo "$name is directory"
elif [ -f $name ]; then
cat $name
else
echo "no file $name"
fi
H. linux shell脚本中 mode=${1:-sart}这句话该如何理解
m=${1:-start}表示,如果$1存在且不为空,m就是$1,如果$1不存在或为空,那么m就是start。操作方法如下:
1、登录CentOS7系统,打开终端在交互命令行输入(cd ..;ls -l)这样就一次执行了两个命令,这两个命令执行是通过fork出一个shell解释器,所以并不影响当前shell交互环境。
I. 求linux shell 中if的写法
主要是格式问题:
if [[ $jg == false ]]; then
echo -e "\033[41;37m $sj $jg \033[5;m"
elif [[ $jg != false ]]; then
echo -e "\033[42;37m $sj $jg \033[1;m"
fi
注意中间的空格,假如是字符串匹配,最好加上引号。