This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/pacman/functions/pacman-list-explicit

21 lines
329 B
Plaintext
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
2012-06-17 15:49:03 -04:00
# Lists explicitly installed Pacman packages.
2012-01-31 23:37:51 -05:00
#
# Authors:
# Benjamin Boudreau <dreurmail@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
pacman --query --explicit --info \
| awk '
BEGIN {
FS=":"
}
/^Name/ {
print $2
}
/^Description/ {
print $2
}
'