Linux机器间的文件/目录传输(基于scp命令)
Linux两台机器间的文件/目录传输(使用scp)
// 将文件传到198.168.0.2上的/home/files/
scp /home/tmpFiles/test.txt root@198.168.0.2:/home/files/
// 将文件传到198.168.0.2上的/home/files/,通过端口2223
scp -P 2223 /home/tmpFiles/test.txt root@198.168.0.2:/home/files/
// 将文件(包括目录本身)传到198.168.0.2上的/home/files/
scp -r /home/tmpFiles/ root@198.168.0.2:/home/files/
// 将文件(不包括目录本身)传到198.168.0.2上的/home/files/
scp /home/tmpFiles/* root@198.168.0.2:/home/files/