I have a text file with lots of package names.
package1 package2 # comment # installing package3 because it was needed for... package 3 package 4 How can I mass install all packages inside the text file without removing the comments?
16 Answers
Something along these lines ought to do the trick.
apt-get install $(grep -vE "^\s*#" filename | tr "\n" " ") The $(something) construction runs the something command, inserting its output in the command line.
The grep command will exclude any line beginning with a #, optionally allowing for whitespace before it. Then the tr command replaces newlines with spaces.
4The following command is a (slight) improvement over the alternative because sudo apt-get install is not executed when the package list is empty.
xargs -a <(awk '! /^ *(#|$)/' "$packagelist") -r -- sudo apt-get install Note that the -a option reads items directly from a file instead of standard input. We don't want to pipe a file into xargs because stdin must remain unchanged for use by apt-get.
Given a package list file package.list, try:
sudo apt-get install $(awk '{print $1'} package.list) 2I use this simple solution:
grep -vE '^#' file.txt | xargs sudo apt install -y grep finds all lines that don't start with a # and gives them as arguments to sudo apt install.
Well, here's my solution to install a list of packages I have for fresh install:
sudo apt install -y $(grep -o ^[^#][[:alnum:]-]* "filename") In a bash function :
aptif () { sudo apt install -y $(grep -o ^[^#][[:alnum:]-]* "$1") } grep explanation :
-okeep only the part of line that matches the expression^[^#]anything that does not start with a#[[:alnum]-]*a sequence of letters, numbers and-
Inspired by the accepted answer here and this answer on removing comments:
apt-get install $(grep -o '^[^#]*' filename)