linux使用seq发送本地文件到其它服务器
时间: 2023-06-03 16:03:10 浏览: 99
可以使用以下命令将本地文件通过seq发送到其他服务器:
seq 1 N | xargs -I{} -P 0 ssh user@server "cat > /path/to/destination/file{}.txt" < /path/to/local/file.txt
其中,N是将要发送的服务器数量,user是远程服务器用户名,server是远程服务器地址,/path/to/destination/是目标文件的远程路径,/path/to/local/file.txt是要发送的本地文件路径。
阅读全文