当前位置:   article > 正文

7zip压缩工具的Linux命令

7zip压缩工具的Linux命令

Macos系统自带的压缩工具,压缩效果一点都不好,压缩效果不明显,果断用7ZIP软件,但是在mac系统下,7zip是没有可视化界面的,只有通过命令是操作。

1 安装方式

(1)源码安装
https://www.7-zip.org/download.html
在这里插入图片描述

(2)命令安装

brew install p7zip
  • 1

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
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

(1)要从当前目录中的所有 *.txt 文件创建 zip 存档:

   ./7zz a archive.zip "*.txt"
  • 1

(2)列出存档的内容

   ./7zz l archive.zip
  • 1

(3)列出存档内容以及每个文件的详细技术信息

./7zz l archive.zip -slt
  • 1

(4)要将存档解压到当前目录

   ./7zz x archive.zip
  • 1

(5)要测试存档并显示每个文件的日志

   ./7zz t archive.zip -bb
  • 1

(6)使用 7-Zip 的 LZMA 代码测试 CPU 性能的基准测试命令

   ./7zz b
  • 1

(7)benchmark命令测试不同压缩、加密下CPU的性能以及来自 7-Zip 的哈希方法和不同数量的线程

   ./7zz b“-mm=*”“-mmt=*”
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/547280
推荐阅读
相关标签
  

闽ICP备14008679号