我有一个问题,通过互联网将文件从windows dir传输到Linux。例如,使用putty,我的windows目录中有8个文件,并且应该将它们并行地发送到Linux服务器,传输单个文件没有问题,但我不知道如何并行地传输多个文件。
发布于 2018-11-19 23:09:16
我发现了这个:
下面是要在远程服务器上运行的命令,涉及查找和并行:
find /data/process/ -type f | parallel scp {} user@machineB:/data/process/请参阅关于如何控制并行执行的作业数量的文档。
The number of concurrent jobs is given with --jobs or the equivalent -j.
By default --jobs is the same as the number of CPU cores.
--jobs 0 will run as many jobs in parallel as possible.在这里找到的:使用终端上的命令并行地从远程服务器复制文件?
https://unix.stackexchange.com/questions/482850
复制相似问题