我有一个批处理文件,可以从远程位置批量复制文件。这很好用。但是在这里,我想指定本地系统位置(目标位置)。
示例:
cd test/test
mget sample_*.zip
quit发布于 2015-03-19 12:03:42
使用lcd /path更改当前本地工作目录:
cd /source_remote_path
lcd /destination_local_path
mget sample_*.zip
quit见 man page。
如果您在本地运行Windows,当然要使用Windows样式路径:
lcd c:\destination_local_path见 command help。
https://stackoverflow.com/questions/29143347
复制相似问题