Unix

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

  • October 6, 2010

我想在將路徑作為參數傳遞之前檢查路徑是否存在

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

引用自:https://serverfault.com/questions/188030