7za x -mmt4 file1.7z file2.7z
List and dump data to stdout
List directories up to a maximum depth of 2 using 7z and awk
7z l archive.rar | awk 'BEGIN {FS="/" } !NF || NF<=3'
Extract a standard .zip file
7za x -p<password> archive.zip
7za e archive.zip file.txt
7za x -o/path/to/destination archive.zip
7za x -mm=LZMA2 archive.7z
Extract an archive and overwrite existing files without prompting
7za x -scsUTF-8 archive.zip
7za x archive.zip -ir!pattern*
Extract files to stdout (standard output)
7za e -so archive.zip > output.txt
7za e archive.zip -r -sdel -y -o/path/to/destination -stl -x!*.txt
7za x -i@list.txt archive.zip
7za x -aoa -ax!file1.txt -ax!file2.txt archive.zip
7za x archive.zip -ts<date>
7za x -spf archive.zip -aoa -r