Fix issue with awk invoking
This commit is contained in:
parent
d55479849f
commit
2be03487f6
1 changed files with 2 additions and 2 deletions
4
bs.sh
4
bs.sh
|
@ -193,8 +193,8 @@ maininstallations() {
|
|||
aurinstalled=$(pacman -Qqm)
|
||||
# Field 1: install-type, Field 2: program, Field 3: comment
|
||||
# Install pacman packages:
|
||||
awk -F "," '$1 ~ /^$/ { print $2 }' | xargs pacman --noconfirm --needed -S </tmp/progs.csv
|
||||
awk -F "," '$1 ~ /^A$/ { print $2 }' | xargs "$aurhelper" --noconfirm --needed -S </tmp/progs.csv
|
||||
awk -F "," '$1 ~ /^$/ { print $2 }' </tmp/progs.csv | xargs pacman --noconfirm --needed -S
|
||||
awk -F "," '$1 ~ /^A$/ { print $2 }' </tmp/progs.csv | xargs "$aurhelper" --noconfirm --needed -S
|
||||
}
|
||||
|
||||
finalize() {
|
||||
|
|
Loading…
Add table
Reference in a new issue