I have a cpio archive with lots of files and I need to extract only one file, not all. With tar I could just use tar -xf archive.tar path/to/file, but that does not work with cpio:
cpio -i < archive.cpio path/to/file
bash: path/to/file: No such file or directory
Does anyone know how to extract just a single file from a cpio archive?