#!/bin/sh
rpm -qp "$1" -ql \
	| grep -v /usr/share/doc/ \
	| grep -v /usr/share/man/ \
	| grep -v /var/run/ \
	| grep -v /var/log/
	

