Linux shell判断文件和文件夹是否存在
http://www.cnblogs.com/platero/p/4021561.html
myPath=./out
if [ ! -d "$myPath" ]; thenmkdir "$myPath"
fi
出现 bash: [: missing `]' 这个错误
解决:出现了问题 ,这是因为 在 [ ] 内 要有空格
shell 编程 错误 bash: [: missing `]'
http://blog.csdn.net/longxibendi/article/details/5886396