Tagged Questions
9
votes
6answers
883 views
Why does xargs cause apt-get to abort?
I'm trying to remove a list of packages from a file. I'm using the following command:
cat packages | xargs sudo apt-get remove
packages is my file containing a list of packages I want to remove. ...