shell从入门到精通流程语句
Posted 奇妙之二进制
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell从入门到精通流程语句相关的知识,希望对你有一定的参考价值。
文章目录
1、if语句
if 语句语法格式基本格式
if condition
then
command1
command2
...
commandN
fi
写成一行(适用于终端命令提示符):
if [ $(ps -ef | grep -c "ssh") -gt 1 ]; then echo "true"; fi
then和if可以写在同
以上是关于shell从入门到精通流程语句的主要内容,如果未能解决你的问题,请参考以下文章