Files
Nomarchy/bin/nomarchy-pkg-drop
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

10 lines
213 B
Bash
Executable File

#!/bin/bash
# Remove all the named packages from the system if they're installed (otherwise ignore).
for pkg in "$@"; do
if pacman -Q "$pkg" &>/dev/null; then
sudo pacman -Rns --noconfirm "$pkg"
fi
done