About 56 results
Open links in new tab
  1. compression - How do I extract .7z files? - Super User

    Mar 7, 2011 · 4 .7z's are compressed files and can be opened with a number of archive managers. An example would be 7-zip. Another well known archive manager that handles .7z would be WinRar.

  2. 7-Zip and unzipping from command line - Super User

    I am looking to use the command line 7-Zip to unzip a folder. I have a file, say example.zip and want to unzip the contents of the file into a folder called example. What are the commands I need ...

  3. windows - Extract a certain file from an archive with 7-Zip from the ...

    Mar 25, 2014 · If I have an archive, for example, some.zip that contains one or more files, how can I extract only one file (I know the name of the file) with 7-Zip from the command line in Windows?

  4. tar - Extract 7z files with standard Linux tools? - Super User

    I know that you can extract .7z files with 7-zip. Is there another standard Linux program that can do this? Maybe one of these tar bzip2 xz gzip I will add that bsdtar can do this, but is not avai...

  5. How do I extract a multi-level compressed file (recursion) with 7-zip ...

    Dec 20, 2023 · For example, if your compressed file is named "example.7z" and you want to extract it to a folder called "extracted", the command would be: 7z x -r example.7z -oextracted Make sure to …

  6. windows - With the 7z.exe CLI, how do I extract only files from a 7z ...

    May 15, 2025 · With the 7z.exe CLI, how do I extract only files from a 7z archive to a destination without also extracting the folders in the archive?

  7. How can I unzip a .tar.gz in one step (using 7-Zip)? - Super User

    The 7zip commandline tool "7z.exe" (I have v9.22 installed) can write to stdout and read from stdin so you can do without the intermediate tar file by using a pipe: 7z x "somename.tar.gz" -so | 7z x -aoa …

  8. archiving - How do I reassemble a zip file that has been emailed in ...

    My first file was 001 and I extracted that like I normally do with 7zip as well (for example.zip "extract to example/") - this extracted all files into the ["example/"] directory.

  9. Extract folder content from 7z archive to specific folder

    Oct 14, 2018 · 7z x *.7z -o* This would extract all .7z archives on the current directory to new subdirectories with the same name. Source: -o (set Output directory) switch Filtering to extract …

  10. archiving - Extract recursively using 7-Zip - Super User

    Jun 12, 2016 · 7 With 7-Zip you can issue the following command to extract all files to your current base folder: 7z e -an -air!*.zip -r So if you have . + \ folder + \ file.zip the contents of file.zip will end up in . …