以前一直在windows下用WinSCP客户端工具连接远程服务器上传下载文件,它是一个可视化的文件传输工具,跟ftp差不多,不过走的是SFTP协议,但是mac下没有这个工具。文章源自黄强博客-https://huangqiang.me/475.html
在mac下我用终端登录上去之后,想传个文件上去就犯愁了,难不成要开个ftp?文章源自黄强博客-https://huangqiang.me/475.html
搜了一下,果然有直接的命令行工具,名字叫SCP文章源自黄强博客-https://huangqiang.me/475.html
使用方式如下:文章源自黄强博客-https://huangqiang.me/475.html
1、上传本地文件到服务器文章源自黄强博客-https://huangqiang.me/475.html
scp /path/filename username@servername:/path/
例如:文章源自黄强博客-https://huangqiang.me/475.html
scp C:\Users\Qiang\Downloads\Video\8h_sleeping_720p.mp4 root@192.168.5.1:/home/lighthouse/video 把win本机 C:\Users\Qiang\Downloads\Video\ 目录下的 8h_sleeping_720p.mp4 文件上传到 192.168.5.1 这台服务器上的 /home/lighthouse/video 目录中文章源自黄强博客-https://huangqiang.me/475.html
2、从服务器上下载文件文章源自黄强博客-https://huangqiang.me/475.html
下载文件我们经常使用wget,但是如果没有http服务,如何从服务器上下载文件呢?文章源自黄强博客-https://huangqiang.me/475.html
scp username@servername:/path/filename /var/www/local_dir(本地目录)
例如scp root@192.168.0.101:/var/www/test.txt 把192.168.0.101上的/var/www/test.txt 的文件下载到/var/www/local_dir(本地目录)文章源自黄强博客-https://huangqiang.me/475.html
3、从服务器下载整个目录文章源自黄强博客-https://huangqiang.me/475.html
scp -r username@servername:/var/www/remote_dir/(远程目录) /var/www/local_dir(本地目录)
例如:scp -r root@192.168.0.101:/var/www/test /var/www/文章源自黄强博客-https://huangqiang.me/475.html
4、上传目录到服务器文章源自黄强博客-https://huangqiang.me/475.html
scp -r local_dir username@servername:remote_dir
例如:scp -r test root@192.168.0.101:/var/www/ 把当前目录下的test目录上传到服务器的/var/www/ 目录文章源自黄强博客-https://huangqiang.me/475.html
文章源自黄强博客-https://huangqiang.me/475.html
文章源自黄强博客-https://huangqiang.me/475.html
文章源自黄强博客-https://huangqiang.me/475.html
文章源自黄强博客-https://huangqiang.me/475.html
文章源自黄强博客-https://huangqiang.me/475.html
评论