shell if 用法

↘锁芯ラ 提交于 2020-11-21 02:39:24

写程序,不可能少了流程控制,本文记录了shell if的简单语法。

shell if 简单格式

shell if有下面几种用法:

if condition;
then
commands;
fi
if condition;
then
commands;
elif condition;
then
  commands
else
  commands
fi
[condition] && action; # 如果condition为真,则执行action
[condition] || action; # 如果condition为假,则执行action

条件

算术比较

-eq,-lt,-ge,-le

文件测试

-f,-x,-d,-e,-c,-b,-w, -r,-l

字符串比较

>, <, -z, -n

本文参考

shell百科

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!