CaffeineAddict
Well-Known Member
I found this command below to list manually installed packages:
askubuntu.com
I understand everything except the two
1. According to
2. Are they stream inputs as in
3. It's confusing because they're not separated by a white space, do they need to placed like this next to
Bash:
comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)

How to list manually installed packages?
I'd like to get a list of packages installed manually by apt or aptitude and be able to find out whether a foobar package was installed manually or automatically. How can we do that from the comman...
I understand everything except the two
<
operators prior (
.1. According to
man comm
there is no need for them.2. Are they stream inputs as in
file1 < file2
? if yes why is that needed?3. It's confusing because they're not separated by a white space, do they need to placed like this next to
(
and why?