CentOS: Install packages listed in a text file?
Yes, do this:
yum -y install $(cat file_name)
Try with xargs
:
cat textfile | xargs yum -y install
Yes, do this:
yum -y install $(cat file_name)
Try with xargs
:
cat textfile | xargs yum -y install