我正在尝试将非常大的文件从一台主机移动到另一台主机。而且文件名太大,所以我必须使用 xargs。另外所有子目录也需要复制
我在源主机当前目录中使用以下命令
find . -name "*" -type f -print0 | xargs -0 scp -r UserName@host:/path/to/destination
但它抛出以下错误
scp: /path/to/destination: not a regular file
答案1
find . -type f -print0 | xargs -0 -I {} scp {} UserName@host:/path/to/destination