forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apk_filter_installed.sh
executable file
·55 lines (44 loc) · 1.2 KB
/
apk_filter_installed.sh
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
#!/bin/sh
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-08-24 00:05:26 +0100 (Mon, 24 Aug 2020)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
set -eu #o pipefail # not available in POSIX sh
if [ "${SHELL##*/}" = bash ]; then
# shellcheck disable=SC2039
set -o pipefail
fi
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(dirname "$0")"
# shellcheck disable=SC1090
. "$srcdir/lib/packages.sh"
# shellcheck disable=SC2154
usage(){
cat <<EOF
Checks a given list of APK packages and returns those already installed
$package_args_description
Tested on Alpine
usage: ${0##*/} <packages>
EOF
exit 3
}
for arg; do
case "$arg" in
-*) usage
;;
esac
done
installed_packages="$(mktemp)"
trap 'rm -f "$installed_packages"' EXIT
installed_apk > "$installed_packages"
process_package_args "$@" |
grep -Fx -f "$installed_packages" || : # grep causes pipefail exit code breakages in calling code when it doesn't match