大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
if条件判断与if真假判断
目录:
1.正确写法
2.错误写法
3.总结
一、正确写法
在编写shell脚本时,为简化代码的行号及结构的简约型,通常将命令执行结果和判断通过一条语句进行编写(在C语言编写程序时,经常遇到此种写法),如:
方法1:单一命令条件判断 [root@centos7 ~]#touch test.sh if useradd root &>/dev/null ; then #如果用户添加成功,则不显示,否则显示用户添加失败 else fi [root@centos7 ~]#./test.sh user1 created failed 方法2:多重命令条件判断 [root@centos7 ~]#vim test1.sh #!/bin/bash [root@centos7 ~]#chmod 777 test1.sh [root@centos7 ~]#./test1.sh |
二、错误写法
但是如果因记忆失误或编写脚本习惯性,添加[ ]判断时,脚本变为如下:
[root@centos7 ~]#touch test.sh if [ useradd user1 &>/dev/null ] ; then #如果用户添加成功,则不显示,否则显示用户添加失败 else fi [root@centos7 ~]#./test.sh # user1 created failed [root@centos7 ~]#id user1 #用户添加成功,本应该不显示,但显示添加失败 [root@centos7 ~]#userdel -r user1 ######################调试模式执行################################################### [root@centos7 ~]#bash -x 4.sh + echo ‘user1 created failed’ #条件判断默认是判断useradd user1添加成功后,命令结果无显示 |
三、总结
总结,在使用if判断及命令执行结果的语法结构时,命令行中间切忌加判断,条件判断必须加条件判断表达式。其本质是,if 真假判断 和 if 条件判断的区别
真假判断 条件判断 多重条件判断 if cmd ; then if [ statement ]; then if [ statement ] && cmd ;then cmd statement cmd statement cmd statement else else else cmd statement cmd statement cmd statement fi fi fi |
####################################################################################
###具体详情请咨询微信:QQ767743577 邮箱地址: xuewei_bo@126.com,有问必答,有答必应,人人为我,我为人人###
####################################################################################
转载于:https://blog.51cto.com/wbxue/1964460
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/170880.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...