1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-03-14 06:35:25 +00:00
prezto/modules/pacman/functions/pacman-list-explicit

25 lines
424 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/ {
printf "\033[0;01m" $2 "\033[0m"
}
/^Version/ {
print " \033[1;32m" $2 "\033[0m"
}
/^Description/ {
print $2
}
'
2011-10-11 23:13:58 -04:00