From df7fd7a1f12f5375210f81a6ca8a45031611cbe4 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Wed, 14 Sep 2016 23:30:06 +0100 Subject: [PATCH] cpio: qualify "(custom) binary format" --- pages/common/cpio.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/cpio.md b/pages/common/cpio.md index 1ce66e6000..adbcf4056f 100644 --- a/pages/common/cpio.md +++ b/pages/common/cpio.md @@ -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}}`