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

12 lines
296 B
Plaintext
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Lists explicitly installed pacman packages.
#
# Authors:
# Benjamin Boudreau <dreurmail@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-12 03:13:58 +00:00
sudo pacman -Qei $(pacman -Qu|cut -d" " -f 1) \
| awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}'