我们可以使用zip+sz命令,最简单方便

首先zip压缩

#把oldFile文件夹及其子文件夹下所有文件打包
# -r 包含子目录
zip -r newFile.zip oldFile
#执行sz命令后,鼠标右键,选择Receive file using Z-modem
#Zmodem 目前最流行的文件传输协议
sz newFile.zip

以上就是zip+sz下载,如果linux环境没有安装zip,可以通过tar命令下载。

tar -czvf newFile.tar.gz oldFile

 

Logo

更多推荐