You are not logged in.
Is there an innovative method to get a list of installed packages minus the manually installed packages? Without writing a script to subtract the following two lists:
pacman -Qq
pacman -Qm
Last edited by graysky (2010-11-28 16:40:03)
Offline
Why would you need a script? Just pipe the output? Its a one-liner, and is all over the forums (and in some places in the wiki as well).
pacman -Qq | grep -vx "$( pacman -Qmq )"EDIT: which basically translates to - no, I don't think there is =p
Last edited by ngoonee (2010-11-28 16:38:55)
Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.
Offline
grrr... thanks. I've been messing around with some bash code to do this!
Offline