Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将单个文件从 .cpio 文件复制到不同的目录而不是其中的树。我很确定这是可能的,我的老师做到了。
我试过这个:
# cpio -i -F backup.cpio sub1/sub2/example.php
但这并没有提取我想要提取它的文件示例。我尝试添加第三个参数,但它不起作用。有什么建议么?哦,我正在运行 Ubuntu。
一种方法是将该单个文件提取到stdout并将其重定向到您选择的文件:
stdout
cpio -i --to-stdout sub1/sub2/example.php < backup.cpio > new_filename.php