1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 16:35:25 +02:00
tldr/pages/osx/xar.md
2019-03-18 15:07:56 +00:00

16 lines
360 B
Markdown

# xar
> Manage .xar archives.
> Homepage: <https://linux.die.net/man/1/xar>.
- Create a xar archive of all files in a given directory:
`xar -cf {{archive.xar}} {{path/to/directory}}`
- Lis[t] the contents of a given xar archive:
`xar -tf {{archive.xar}}`
- Extract the contents of a given xar archive to the current directory:
`xar -xf {{archive.xar}}`