标签: linux bash shell unix scripting
我试图编写s脚本,检查父目录中是否存在给定目录。 在父目录中,我只有目录,没有文件。
由于
答案 0 :(得分:2)
试试这个:
path=<Path of the parent directory> name=<Name of the directory> if [ -d "$path/$name" ] then echo "$path/$name exists" fi