1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-30 22:55:24 +02:00

cpio: qualify "(custom) binary format"

This commit is contained in:
Waldir Pimenta 2016-09-14 23:30:06 +01:00 committed by GitHub
parent 4525b11fcf
commit df7fd7a1f1

View file

@ -1,9 +1,9 @@
# cpio
> Copies files in and out of archives.
> Supports the following archive formats: custom binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar.
> 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.
- Take a list of file names from standard input and add them [o]nto an archive in binary format:
- Take a list of file names from standard input and add them [o]nto an archive in cpio's binary format:
`echo "{{file1}} {{file2}} {{file3}}" | cpio -o > {{archive.cpio}}`