是什么 ? | : | LZMA-based data compression program similar to gzip or bzip2 |
开发语言 | : | C++ |
文件扩展名 | : | .lz |
MediaType | : | application/x-lzip |
官方主页 | : | https://www.nongnu.org/lzip |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
Windows | scoop | scoop install lzip |
Windows | Chocolatey | choco install -y lzip |
macOS | HomeBrew | brew install lzip |
GNU/Linux | HomeBrew | brew install lzip |
apt | sudo apt-get install -y lzip | |
CentOS | yum | sudo yum install -y lzip |
dnf | sudo dnf install -y lzip | |
openSUSE | zypper | sudo zypper install -y lzip |
Alpine Linux | apk | sudo apk add lzip |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge lzip |
lzip
命令通常被tar命令调用,用来解压.tar.lz
格式的文件。
示例:
tar vxf flex-2.6.4.tar.lz
等同如下:
lzip -dc flex-2.6.4.tar.lz | tar vx