1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 00:46:03 +02:00
tldr/pages/common/cpio.md

17 lines
276 B
Markdown
Raw Normal View History

2016-05-10 10:01:53 -07:00
# cpio
> Archiving utility.
- Create an archive from files
`echo "{{file1}} {{file2}} {{file3}}" | cpio -ov > {{archive.cpio}}`
- Create an archive from a directory
`find {{directory}} | cpio -ov > {{archive.cpio}}`
- Extract an archive
`cpio -idv < {{archive.cpio}}`