You are not logged in.
Is there any way to install/uninstall multiple packages written in file? E.g. I have text file with content:
packageA
packageB
packageCAnd I want use something like "pacman -S <<< file-with-packages". I know, I can get these files on one line and paste it as parameters, but this is not pretty way.
I tried searching (also in man), but I didn't found anything (if I missed this in man/wiki, I am sorry, now is "early tomorow" and my mind needs redbull or sleep
)
Offline
Philosophy is looking for a black cat in a dark room. Metaphysics is looking for a black cat in a dark room that isn't there. Religion is looking for a black cat in a dark room that isn't there and shouting "I found it!". Science is looking for a black cat in a dark room with a flashlight.
Offline
Try
pacman -S $(cat filename)Offline
Thank you both, this it exactly i was looking for.
Offline