-
Notifications
You must be signed in to change notification settings - Fork 31
/
pkgup
executable file
·59 lines (50 loc) · 996 Bytes
/
pkgup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env bash
has() {
local verbose=0
if [[ $1 = '-v' ]]; then
verbose=1
shift
fi
for c; do c="${c%% *}"
if ! command -v "$c" &> /dev/null; then
(( "$verbose" > 0 )) && err "$c not found"
return 1
fi
done
}
err() {
printf "\e[31m%s\e[0m\n" "$*" >&2
}
die() {
(( $# > 0 )) && err "$*"
exit 1
}
select_from() {
local cmd='command -v'
for a; do
case "$a" in
-c)
cmd="$2"
shift 2
;;
esac
done
for c; do
if $cmd "${c%% *}" &> /dev/null; then
echo "$c"
return 0
fi
done
return 1
}
has -v fzf || die
helper=$(select_from pacaur trizen packer apacman pacman)
mapfile -t pkgs < <(
$helper -Qu --color=always |
fzf --ansi -e -m --inline-info --cycle --reverse --bind='Ctrl-A:toggle-all' |
awk '{print $3}'
)
count="${#pkgs[@]} package"
(( ${#pkgs[@]} > 1 )) && count+='s'
printf "upgrading %s: %s\n" "$count" "${pkgs[*]}"
(( ${#pkgs[@]} > 0 )) && $helper -S "${pkgs[@]}"