> So I have a file generated by > $ rpm -qa > rpmlist.txt yum install `cat rpmlist.txt` those are backquotes. if the file is too big the shell will whine so then you cat use xargs like: xargs -n 100 yum install < rpmlist.txt to use 100 at a time.