mkdir -p 参数的使用

Posted in_the_way

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mkdir -p 参数的使用相关的知识,希望对你有一定的参考价值。

ssh [email protected]%s -o ConnectTimeout=2 "ssh [email protected]%s ConnectTimeout=2 "if [ ! -d /root/scripts ]; then mkdir /root/scripts; fi""      # 有语法错误

改变思路:(mkdir -p 参数)

ssh [email protected]%s -o ConnectTimeout=2 "ssh [email protected]%s ConnectTimeout=2 "mkdir -p /root/scripts""     # 先跳到跳板机上,然后再跳到目标机器上,看有没有 /root/scripts ,如果没有则创建

 

以上是关于mkdir -p 参数的使用的主要内容,如果未能解决你的问题,请参考以下文章

mkdir-命令使用

mkdir命令的使用

mkdir命令怎么使用

PHP mkdir()无写权限的问题解决方法

python中的 os.mkdir和os.mkdirs

linux目录操作命令 mkdir