diff --git a/scripts/pacpruner b/scripts/pacpruner new file mode 100755 index 0000000..f936419 --- /dev/null +++ b/scripts/pacpruner @@ -0,0 +1,86 @@ +#!/usr/bin/env bash + +: " + * This script is stupid and slow. You probably shouldn't use it. + " + +. "$(dirname $0)/util/logging.bash" + +command -v pacman > /dev/null \ + || die 'ERROR: This script only works on systems with the "pacman" package' \ + ' manager!' + + +read -d '' usage <