prezto/modules/pacman/functions/pacman-list-explicit

25 lines
369 B
Plaintext
Raw Normal View History

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