#!/usr/bin/env bash # SPDX-License-Identifier: GPL-2.0-only # created by Tobias Powalowski _APPNAME=${0##*/} _usage () { echo "Check on missing binaries in archboot environment" echo "-------------------------------------------------" echo "This will check binaries from package, if they exist" echo "and report missing to binary.txt" echo "" echo "usage: ${_APPNAME} " exit 0 } [[ -z "${1}" ]] && _usage if [[ ! "$(cat /etc/hostname)" == "archboot" ]]; then echo "This script should only be run in booted archboot environment. Aborting..." exit 1 fi # update pacman db first pacman -Sy if [[ "${1}" == "base" ]]; then _PACKAGE="$(pacman -Qi base | grep Depends | cut -d ":" -f2)" else _PACKAGE="${1}" fi echo "${_PACKAGE}" >binary.txt #shellcheck disable=SC2086 for i in $(pacman -Ql ${_PACKAGE} | grep "/usr/bin/..*"$ | cut -d' ' -f2); do command -v "${i}" &>/dev/null || echo "${i}" >>binary.txt done # vim: set ft=sh ts=4 sw=4 et: