Extracting files from RPMs
This one can come very handy: as it is said here, one can use rpm2cpio (instructions here) and cpio to extract files from an RPM:
rpm2cpio pack.rpm | cpio --extract --make-directories --preserve-modification-time --verbose ./path/to/file
As simple as that.

