mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-10 21:58:20 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
29
tldr/unrar
Normal file
29
tldr/unrar
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# unrar
|
||||
|
||||
> Extract RAR archives.
|
||||
> More information: <https://manned.org/unrar>.
|
||||
|
||||
- Extract files with original directory structure:
|
||||
|
||||
`unrar x {{compressed.rar}}`
|
||||
|
||||
- Extract files to a specified path with the original directory structure:
|
||||
|
||||
`unrar x {{compressed.rar}} {{path/to/extract}}`
|
||||
|
||||
- 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}}`
|
||||
Reference in New Issue
Block a user