利用scp传输文件
从服务器下载文件
用法:
scp username@servername:/path/filename /tmp/local_destination
示例:
scp [email protected]:/home/magentonotes/test.txt #把192.168.0.101上的/home/magentonotes/test.txt的文件下载到本地目录 /tmp/local_destination
上传本地文件到服务器
用法:
scp /path/local_filename username@servername:/path
示例:
scp /var/www/test.php [email protected]:/var/www/ #把本机/var/www/目录下的test.php文件上传到192.168.0.101这台服务器上的/var/www/目录中
从服务器下载整个目录
用法:
scp -r username@servername:remote_dir/ /tmp/local_dir
示例:
scp -r [email protected] /home/magentonotes/test /tmp/local_dir
上传目录到服务器
用法:
scp -r /tmp/local_dir username@servername:remote_dir
示例:
scp -r test [email protected]:/var/www/ #把当前目录下的test目录上传到服务器的/var/www/ 目录
其他用法
-P port #指定端口
原创文章,转载请注明:转载自Web开发笔记 | Linux利用scp 远程上传下载文件/文件夹
Comments on this entry are closed.