python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why does my command stop working when I put it into an alias?
I am trying to run the following command
comm -23 <(pacman -Qqe | sort) <(awk '{print $1}' /desktopfs-pkgs.txt | sort)
I get the following output
autoconf
automake
bison
chromium
code
discord
fa...

Caleb Renfroe
Votes: 0
Answers: 1
GNU/Linux using comm with a file and the output of a command
I want to use the comm command to compare a text file and the output of a command.
My first idea was to run:
comm packagesList $(pacman -Qe)
However, that outputs an errpr. I also tried using ´pacman...

Peter Petigru
Votes: 0
Answers: 1