我如何在 unix bash 中检查路径(文件)是否存在?

我如何在 unix bash 中检查路径(文件)是否存在?

我想在将路径作为参数传递之前检查路径是否存在

答案1

if [ -d /tmp ]
then
    echo the directory exists
fi

相关内容