htmlifelse语句例子?
#ifelse_exam.sh脚本用于检查输入的字符串是否是一个当前目录
#!/bin/bash
if [ "$1" ]
then
echo "What you input is not null"
if [ -e "$1" ]
then
echo "The file $1 is existence!"
else
echo "The file $1 is not existence!"
fi
else
echo "What you input is null!"
fi
Copyright © 广州京杭网络科技有限公司 2005-2025 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有