如何在父目录bash中检查给定的目录名是否存在

时间:2014-07-31 10:13:53

标签: linux bash shell unix scripting

我试图编写s脚本,检查父目录中是否存在给定目录。 在父目录中,我只有目录,没有文件。

由于

1 个答案:

答案 0 :(得分:2)

试试这个:

path=<Path of the parent directory>
name=<Name of the directory>

if [ -d "$path/$name" ]
then
   echo "$path/$name exists"
fi