用scp跨节点传输

利用sshpass实现非交互式传输

step1 下载sshpass
下载网址 :https://sourceforge.net/projects/sshpass/files/latest/download

tar -xzvf sshpass-1.06.tar.gz
cd sshpass-1.06
./configure --prefix 后接要安装的目录
make &&make install

step2 将scp命令写入shell脚本,nohup投递即可
scp 命令示例如下:

sshpass-1.06/sshpass -p password scp -r [email protected] :/ifs/rawdata/{*41*,*42*,*43*} ./

scp命令用法

Image.png

你可能感兴趣的:(用scp跨节点传输)