[[email protected] ~]# yum install -y zip unzip // 安装 zip 和 unzip [[email protected] ~]# zip 1.zip 1.txt // 压缩文件,要同时指定压缩后的文件名 [[email protected] ~]# zip -r test.zip test // 压缩目录,要同时指定压缩后的文件名 [[email protected] ~]# zip 1.zip 1.txt 2.txt // 表示把 1.txt 和 2.txt 压缩成一个文件 1.txt.zip [[email protected] ~]# unzip 1.zip // 解压缩
时间: 2024-11-06 10:00:58