Ubuntu/Windows 7z安装与使用 发表于 2023-02-15 分类于 7z 本文字数: 339 阅读时长 ≈ 1 分钟 Ubuntu 安装7zwindows安装7z压缩解压缩 Ubuntu 安装7z1sudo apt install p7zip-full p7zip-rar windows安装7z先搜一搜电脑上有没有7z.exe和7z.dll,有的话拷过来直接用 或者前往网站下载:Download (7-zip.org) 压缩1237z a <压缩包名>.<7z|zip> <文件># 7z a bundle.7z ./dist# 7z a bundle.7z main.cpp 解压缩12347z x -y <压缩包> -o<解压目录># 7z x bundle.7z # 默认解压到当前目录# 7z x -y bundle.7z # 加上-y遇到已存在文件时采用yes策略,即覆盖# 7z x -y bundle.7z -o/home/bundle # -o紧贴着输出路径