1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-06 06:09:44 +00:00
prezto/modules/pacman/functions/pacman-list-explicit

23 lines
385 B
Plaintext
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
2012-06-17 19:49:03 +00:00
# Lists explicitly installed Pacman packages.
2012-02-01 04:37:51 +00:00
#
# Authors:
# Benjamin Boudreau <dreurmail@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
sudo pacman --query --explicit --info \
$(pacman --query --upgrades | cut -d' ' -f 1) \
| awk '
BEGIN {
FS=":"
}
/^Name/ {
print $2
}
/^Description/ {
print $2
}
'
2011-10-12 03:13:58 +00:00