当前位置:首页>维修大全>综合>

htmlifelse语句例子(html中if可以嵌套while吗)

htmlifelse语句例子(html中if可以嵌套while吗)

更新时间:2025-07-13 02:33:36

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

更多栏目