576de87ceae60a66041e90f7472dc6ee913ef4fd
[nethome.git] / bin / rpmx
1 #! /bin/sh
2 if [ $# = 0 ];then
3         echo 'Syntax: $0 <file.rpm>'
4         exit 1
5         fi
6 while [ $# -gt 0 ];do
7         rpm2cpio "$1"|cpio -id --quiet #-v #FIXME: --sparse doesn't work, why?
8         shift
9         done