Forrest logo
back to context overview

7za

List of commands for 7za:

  • 7za:tldr:29c20 7za: E[x]tract an archive to a specific directory.
    $ 7za x ${path-to-archive-7z} -o${path-to-output}
    try on your machine
    explain this command
  • 7za:tldr:55230 7za: E[x]tract an archive preserving the original directory structure.
    $ 7za x ${path-to-archive-7z}
    try on your machine
    explain this command
  • 7za:tldr:61274 7za: E[x]tract an archive to `stdout`.
    $ 7za x ${path-to-archive-7z} -so
    try on your machine
    explain this command
  • 7za:tldr:798c4 7za: [l]ist the contents of an archive.
    $ 7za l ${path-to-archive-7z}
    try on your machine
    explain this command
  • 7za:tldr:88e86 7za: [a]rchive using a specific archive type.
    $ 7za a -t${select} ${path-to-archive-7z} ${filename_or_directory}
    try on your machine
    explain this command
  • 7za:tldr:9ecab 7za: [a]rchive a file or directory.
    $ 7za a ${path-to-archive-7z} ${filename_or_directory}
    try on your machine
    explain this command
  • 7za:tldr:e5c47 7za: Encrypt an existing archive (including file names).
    $ 7za a ${path-to-encrypted-7z} -p${password} -mhe=${on} ${path-to-archive-7z}
    try on your machine
    explain this command
  • 7za:tldr:fd3da 7za: List available archive types.
    $ 7za i
    try on your machine
    explain this command
back to context overview