shell脚本编程之选择执行之if语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本编程之选择执行之if语句相关的知识,希望对你有一定的参考价值。
单分支的if语句:
if 测试条件
then
代码分支
fi
双分支的if语句:
if 测试条件; then
条件为真时执行的分支
else
条件为假时执行的分支
fi
示例:通过参数传递一个用户名给脚本,此用户不存时,则添加之;
#!/bin/bash # if [ $# -lt 1 ]; then echo "At least one username." exit 2 fi if grep "^$1\>" /etc/passwd &> /dev/null; then echo "User $1 exists." else useradd $1 echo $1 | passwd --stdin $1 &> /dev/null echo "Add user $1 finished." fi
练习1:通过命令行参数给定两个数字,输出其中较大的数值;
#!/bin/bash # if [ $# -lt 2 ]; then echo "Two integers." exit 2 fi if [ $1 -ge $2 ]; then echo "Max number: $1." else echo "Max number: $2." fi echo "Max number: $max."
本文出自 “汪立明” 博客,请务必保留此出处http://afterdawn.blog.51cto.com/7503144/1915972
以上是关于shell脚本编程之选择执行之if语句的主要内容,如果未能解决你的问题,请参考以下文章