Linux中文件的上传下载wget/curl wget http://www.baidu.com curl –o baidu.html http://www.baidu.com

下载

        wget/curl
	wget http://www.baidu.com
	curl –o baidu.html http://www.baidu.com

上传/下载

        scp: 基于ssh协议传输的
	scp baidu.html [email protected]:/tmp
	将本地用户当前目录下baidu.html文件上传远程root用户/tmp目录下
	scp [email protected]:/tmp/baidu.html ./
	将远程服务器root用户/tmp目录下baidu.html文件下载到当前用户./目录下

Windows下XShell中与Linux服务器-上传/下载

        安装
	yum install lrzsz
	上传服务器
	rz
	下载Windows
	sz

猜你喜欢

转载自blog.csdn.net/m0_37732829/article/details/88780761