2016-05-10 10:01:53 -07:00
|
|
|
# cpio
|
|
|
|
|
2016-09-13 12:05:19 +05:30
|
|
|
> Copies files in and out of archives.
|
2016-09-14 23:30:06 +01:00
|
|
|
> Supports the following archive formats: cpio's custom binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar.
|
2019-06-09 00:05:29 +01:00
|
|
|
> More information: <https://www.gnu.org/software/cpio>.
|
2016-05-10 10:01:53 -07:00
|
|
|
|
2023-08-09 07:29:02 +02:00
|
|
|
- Take a list of file names from `stdin` and add them [o]nto an archive in cpio's binary format:
|
2016-05-10 10:01:53 -07:00
|
|
|
|
2016-09-13 12:05:19 +05:30
|
|
|
`echo "{{file1}} {{file2}} {{file3}}" | cpio -o > {{archive.cpio}}`
|
2016-05-10 10:01:53 -07:00
|
|
|
|
2019-02-08 01:28:43 +01:00
|
|
|
- Copy all files and directories in a directory and add them [o]nto an archive, in [v]erbose mode:
|
2016-05-10 10:01:53 -07:00
|
|
|
|
2016-09-13 12:05:19 +05:30
|
|
|
`find {{path/to/directory}} | cpio -ov > {{archive.cpio}}`
|
2016-05-10 10:01:53 -07:00
|
|
|
|
2016-09-14 22:18:01 +05:30
|
|
|
- P[i]ck all files from an archive, generating [d]irectories where needed, in [v]erbose mode:
|
2016-05-10 10:01:53 -07:00
|
|
|
|
2016-09-13 12:05:19 +05:30
|
|
|
`cpio -idv < {{archive.cpio}}`
|