LFTP mkdir -p 不适用于 sftp 协议?
这是服务器目录结构:
/tmp/a
,我只能使用 sftp 连接到服务器
现在我想先 mkdir,然后将一些文件上传到其中。
mkdir -p /tmp/a/b 有效,但 mkdir -p /tmp/a/b/c/d/e/f/g 无效。
我认为参数 -p 适合这种情况,有什么问题吗?谢谢!
here is the server directory structure:
/tmp/a
and I can only connect to the server with sftp
Now I want to mkdir first, and then upload some files into it.
mkdir -p /tmp/a/b works, but mkdir -p /tmp/a/b/c/d/e/f/g doesn't.
I think the param -p is for this situation, anything wrong? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
新版本lftp支持使用sftp协议的
mkdir -p
。New version lftp support
mkdir -p
with sftp protocal.创建与文件名相同的目录并将文件放入其中。
Create directories the same as in file names and put the files into them.