mirror of https://github.com/CrimsonTome/tldr.git
20 lines
409 B
Markdown
20 lines
409 B
Markdown
# unrar
|
|
|
|
> Extract RAR archives.
|
|
|
|
- Extract files with original directory structure:
|
|
|
|
`unrar x {{compressed.rar}}`
|
|
|
|
- Extract files into current directory, losing directory structure in the archive:
|
|
|
|
`unrar e {{compressed.rar}}`
|
|
|
|
- Test integrity of each file inside the archive file:
|
|
|
|
`unrar t {{compressed.rar}}`
|
|
|
|
- List files inside the archive file without decompressing it:
|
|
|
|
`unrar l {{compressed.rar}}`
|