OpenBSD manual page server

Manual Page Search Parameters

CPIO(1) General Commands Manual CPIO(1)

cpiocopy file archives in and out

cpio -o [-AaBcjLvZz] [-C bytes] [-F archive] [-H format] [-O archive] < name-list [> archive]

cpio -i [-6BbcdfjmrSstuvZz] [-C bytes] [-E file] [-F archive] [-H format] [-I archive] [pattern ...] [< archive]

cpio -p [-adLlmuv] destination-directory < name-list

The cpio command copies files to and from a cpio archive.

The options are as follows:

Create an archive. Reads the list of files to store in the archive from standard input, and writes the archive on standard output.
Append to the specified archive.
Reset the access times on files that have been copied to the archive.
Set block size of output to 5120 bytes.
bytes
Set the block size of output to bytes.
Use ASCII format for cpio header for portability.
archive
Use the specified file as the input for the archive.
format
Write the archive in the specified format. Recognized formats are:

bcpio
Old binary cpio format.
cpio
Old octal character cpio format.
sv4cpio
SVR4 hex cpio format.
tar
Old tar format.
ustar
POSIX ustar format.
Compress archive using the bzip2 format. The bzip2 utility must be installed separately.
Follow symbolic links.
archive
Use the specified file name as the archive to write to.
Be verbose about operations. List filenames as they are written to the archive.
Compress archive using compress(1) format.
Compress archive using gzip(1) format.
Restore files from an archive. Reads the archive file from standard input and extracts files matching the patterns that were specified on the command line.
Process old-style cpio format archives.
Set the block size of the archive being read to 5120 bytes.
Do byte and word swapping after reading in data from the archive, for restoring archives created on systems with a different byte order.
bytes
Read archive written with a block size of bytes.
Expect the archive headers to be in ASCII format.
Create any intermediate directories as needed during restore.
file
Read list of file name patterns to extract or list from file.
archive, -I archive
Use the specified file as the input for the archive.
Restore all files except those matching the patterns given on the command line.
format
Read an archive of the specified format. Recognized formats are:

bcpio
Old binary cpio format.
cpio
Old octal character cpio format.
sv4cpio
SVR4 hex cpio format.
tar
Old tar format.
ustar
POSIX ustar format.
Uncompress archive using the bzip2 format. The bzip2 utility must be installed separately.
Restore modification times on files.
Rename restored files interactively.
Swap words after reading data from the archive.
Swap bytes after reading data from the archive.
Only list the contents of the archive, no files or directories will be created.
Overwrite files even when the file in the archive is older than the one that will be overwritten.
Be verbose about operations. List filenames as they are copied in from the archive.
Uncompress archive using compress(1) format.
Uncompress archive using gzip(1) format.
Copy files from one location to another in a single pass. The list of files to copy are read from standard input and written out to a directory relative to the specified directory argument.
Reset the access times on files that have been copied.
Create any intermediate directories as needed to write the files at the new location.
Follow symbolic links.
When possible, link files rather than creating an extra copy.
Restore modification times on files.
Overwrite files even when the original file being copied is older than the one that will be overwritten.
Be verbose about operations. List filenames as they are copied.

Path in which to store temporary files.

The cpio utility exits with one of the following values:

0
All files were processed successfully.
1
An error occurred.

Whenever cpio cannot create a file or a link when extracting an archive or cannot find a file while writing an archive, or cannot preserve the user ID, group ID, file mode, or access and modification times when the -p option is specified, a diagnostic message is written to standard error and a non-zero exit value will be returned, but processing will continue. In the case where cpio cannot create a link to a file, cpio will not create a second copy of the file.

If the extraction of a file from an archive is prematurely terminated by a signal or error, cpio may have only partially extracted the file the user wanted. Additionally, the file modes of extracted files and directories may have incorrect file bits, and the modification and access times may be wrong.

If the creation of an archive is prematurely terminated by a signal or error, cpio may have only partially created the archive, which may violate the specific archive format specification.

pax(1), tar(1)

Keith Muller at the University of California, San Diego.

Different file formats have different maximum file sizes. It is recommended that a format such as cpio or ustar be used for larger files.

bcpio 4 Gigabytes
sv4cpio 4 Gigabytes
cpio 8 Gigabytes
tar 8 Gigabytes
ustar 8 Gigabytes

The -s and -S options are currently not implemented.

January 16, 2020 OpenBSD-7.1