mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 23:15:33 +02:00
cpio: Update description to match flags
This commit is contained in:
parent
a53fb05c95
commit
1a8f54c375
1 changed files with 7 additions and 8 deletions
|
@ -1,16 +1,15 @@
|
|||
# cpio
|
||||
|
||||
> Archiving utility.
|
||||
> Copies files to and from archives.
|
||||
|
||||
- Create an archive from files
|
||||
- Take a list of file names from standard input and creates an archive from them:
|
||||
|
||||
`echo "{{file1}} {{file2}} {{file3}}" | cpio -ov > {{archive.cpio}}`
|
||||
`echo "{{file1}} {{file2}} {{file3}}" | cpio -o > {{[o]utput_archive.cpio}}`
|
||||
|
||||
- Create an archive from a directory
|
||||
- Create an archive containing all the files and folders in a directory in [v]erbose mode:
|
||||
|
||||
`find {{directory}} | cpio -ov > {{archive.cpio}}`
|
||||
`find {{path/to/directory}} | cpio -ov > {{[o]utput_archive.cpio}}`
|
||||
|
||||
- Extract an archive
|
||||
|
||||
`cpio -idv < {{archive.cpio}}`
|
||||
- Extract files from an archive, generating [d]irectories where needed, in [v]erbose mode:
|
||||
|
||||
`cpio -idv < {{[i]nput_archive.cpio}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue