1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-06 04:55:25 +02:00
tldr/pages/common/unar.md

25 lines
617 B
Markdown
Raw Normal View History

2016-11-26 07:14:25 +02:00
# unar
> Extract contents from archive files.
> More information: <https://manned.org/unar>.
2016-11-26 07:14:25 +02:00
- Extract an archive to the current directory:
`unar {{path/to/archive}}`
2016-11-26 07:14:25 +02:00
- Extract an archive to the specified directory:
`unar {{[-o|-output-directory]}} {{path/to/directory}} {{path/to/archive}}`
2016-11-26 07:14:25 +02:00
- Force overwrite if files to be unpacked already exist:
`unar {{[-f|-force-overwrite]}} {{path/to/archive}}`
2016-11-26 07:14:25 +02:00
- Force rename if files to be unpacked already exist:
`unar {{[-r|-force-rename]}} {{path/to/archive}}`
2016-11-26 07:14:25 +02:00
- Force skip if files to be unpacked already exist:
`unar {{[-s|-force-skip]}} {{path/to/archive}}`