mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 15:08:01 +00:00
Improve AWK code readability, remove highlighting
This commit is contained in:
parent
e3b6b5ab30
commit
d54211832a
@ -6,6 +6,17 @@
|
||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||
#
|
||||
|
||||
sudo pacman --query --explicit --info $(pacman --query --upgrades | cut -d' ' -f 1) \
|
||||
| awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}'
|
||||
sudo pacman --query --explicit --info \
|
||||
$(pacman --query --upgrades | cut -d' ' -f 1) \
|
||||
| awk '
|
||||
BEGIN {
|
||||
FS=":"
|
||||
}
|
||||
/^Name/ {
|
||||
print $2
|
||||
}
|
||||
/^Description/ {
|
||||
print $2
|
||||
}
|
||||
'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user