当前位置: 技术问答>linux和unix
如何在linux判断目录是否存在
来源: 互联网 发布时间:2015-11-21
本文导语: 如何在linux判断目录是否存在,用shell script(bash) 实现 而该目录的名字是终端输入的. | if test -d $1 then echo "directory exists." else ehco "directory does not exists" fi | test...
如何在linux判断目录是否存在,用shell script(bash) 实现
而该目录的名字是终端输入的.
而该目录的名字是终端输入的.
|
if test -d $1
then
echo "directory exists."
else
ehco "directory does not exists"
fi
then
echo "directory exists."
else
ehco "directory does not exists"
fi
|
test -d ${变量名}
|
if 语句可不可以嵌套
可以
可以