7zip: Difference between revisions

From wikinotes
 
Line 11: Line 11:
<blockquote>
<blockquote>
<source lang="bash">
<source lang="bash">
7z e file.7z      # extract
7z x -o/path/out/ file.7z  # extract to dir
7z e file.7z out/ # extract to dir
</source>
</source>
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->

Latest revision as of 20:39, 13 November 2021

7zip is a commandline/gui program to manage various archive formats.

Install

pacman -S p7zip  # archlinux

Usage

7z x -o/path/out/ file.7z  # extract to dir