标签: unix
在shell脚本中可以使用什么命令来检查目录是否存在?
答案 0 :(得分:1)
if [ -d "/path/to/dir" ] then echo "Directory /path/to/dir exists." else echo "Error: Directory /path/to/dir does not exists." fi