我已经用命令创建了cpio.gz: cat a.cpio.gz b.cpio.gz > c.cpio.gz
现在,我想将此c.cpio.gz文件提取到b.cpio.gz和a.cpio.gz.我该如何实现?
好吧,我有2个.gz
文件,a.txt.gz
和b.txt.gz
。然后:
$ cat a.txt.gz b.txt.gz > c.txt.gz
$ hexdump -C c.txt.gz
00000000 1f 8b 08 08 f7 a3 00 59 00 03 61 2e 74 78 74 00 |.......Y..a.txt.|
00000010 4b 2c 4e e1 4a 24 80 01 a9 66 ae 58 24 00 00 00 |K,N.J$...f.X$...|
00000020 1f 8b 08 08 01 a4 00 59 00 03 62 2e 74 78 74 00 |.......Y..b.txt.|
00000030 2b 2c 4f e5 2a 24 0a 73 a5 72 01 00 70 24 d5 0a |+,O.*$.s.r..p$..|
00000040 2d 00 00 00 |-...|
请参阅从0x00和0x20开始的1f 8b 08
,它们是.gz
文件的BOF标记(基于我在OP评论中提到的文章(。现在有些尴尬:
$ awk '
BEGIN { RS="x1fx8bx08"; ORS="" } # set the marker to RS
NR==2 { print RS $0 > "a2.txt.gz" } # output the marker and what's after first marker
NR==3 { print RS $0 > "b2.txt.gz" } # output the marker and what's after the second
' c.txt.gz
生成2个文件,并基于我的diff
与原始文件相同。