也许有更好的方法,但我正在编写一个应用程序部署脚本,如果目录不存在以放置文件,我想在远程服务器上创建一个目录.
提前致谢!
if [[ `ssh user@example.com test -d /path/to/my/directory && echo exists` ]] ; then # put code in here fi