--rpm2cpio = Command to convert to cpio file --cpio = Command to operate archive files
-[--list] = List display -[-i] = Extract (receive archive file from standard input and extract: copy-in mode) -[-d] = Create directory (automatically created if the required directory does not exist during extraction)
[root@hogehoge ~]# rpm2cpio google-noto-sans-georgian-fonts-20141117-5.el7.noarch.rpm | cpio --list ./etc/fonts/conf.d/66-google-noto-sans-georgian.conf ./usr/share/appdata/google-noto-sans-georgian.metainfo.xml ./usr/share/fontconfig/conf.avail/66-google-noto-sans-georgian.conf ./usr/share/fonts/google-noto ./usr/share/fonts/google-noto/NotoSansGeorgian-Bold.ttf ./usr/share/fonts/google-noto/NotoSansGeorgian-Regular.ttf 124 blocks [root@hogehoge ~]#
[root@hogehoge ~]# rpm2cpio google-noto-sans-georgian-fonts-20141117-5.el7.noarch.rpm | cpio -id 124 blocks [root@hogehoge ~]# [root@hogehoge ~]# ls -l drwxr-xr-x 3 root root 19 May 2 18:20 usr drwxr-xr-x 3 root root 19 May 2 18:20 etc [root@hogehoge ~]#
Recommended Posts