Linux packet compression and decompression

# packet compression

zip -s 1024M Judgement.zip --out Jdg/Judgement

#参数含义
-s 1024M                 #分组的单个文件的大小为1024M
--out Jdg/Judgement      #输出分组文件名路径/前缀

# unzip

# 1.先合并文件,Judgement1.zip为合并后的文件
cat Judgement.z* > Judgement1.zip
# 2.解压缩
unzip Judgement1.zip

Guess you like

Origin blog.csdn.net/qq_43737816/article/details/123989996