1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 21:42:08 +02:00
tldr/pages/linux/xar.md
2018-07-24 16:14:02 +01:00

15 lines
311 B
Markdown

# xar
> Manage .xar archives.
- Create a xar archive of all files in a given directory:
`xar -cf {{archive.xar}} {{path/to/directory}}`
- List 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}}`