Macos系统自带的压缩工具,压缩效果一点都不好,压缩效果不明显,果断用7ZIP软件,但是在mac系统下,7zip是没有可视化界面的,只有通过命令是操作。
1 安装方式
(1)源码安装
https://www.7-zip.org/download.html
(2)命令安装
brew install p7zip
2 使用方式
7-Zip 支持命令中的文件名通配符。
如果想使用 7-Zip 解析器作为通配符,则必须使用文件名的引号
而不是系统shell的解析器。
如果是源码安装的,使用7z,如果是通过brew安装的7z
使用方法:Usage: 7zz/7z […] <archive_name> [<file_names>…] [@listfile]
a : Add files to archive
b : Benchmark
d : Delete files from archive
e : Extract files from archive (without using directory names)
h : Calculate hash values for files
i : Show information about supported formats
l : List contents of archive
rn : Rename files in archive
t : Test integrity of archive
u : Update files to archive
x : eXtract files with full paths
(1)要从当前目录中的所有 *.txt 文件创建 zip 存档:
./7zz a archive.zip "*.txt"
(2)列出存档的内容
./7zz l archive.zip
(3)列出存档内容以及每个文件的详细技术信息
./7zz l archive.zip -slt
(4)要将存档解压到当前目录
./7zz x archive.zip
(5)要测试存档并显示每个文件的日志
./7zz t archive.zip -bb
(6)使用 7-Zip 的 LZMA 代码测试 CPU 性能的基准测试命令
./7zz b
(7)benchmark命令测试不同压缩、加密下CPU的性能以及来自 7-Zip 的哈希方法和不同数量的线程
./7zz b“-mm=*”“-mmt=*”