From 6b76c602a1df6c18098fa6b9a43db3a64f2d5ce2 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 24 Jan 2026 18:52:34 -0600 Subject: fix(testing): remove obsolete --skip-slow-packages option This flag was removed from archsetup but remained in test scripts. --- dotfiles/system/.local/bin/clobberall | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 dotfiles/system/.local/bin/clobberall (limited to 'dotfiles/system/.local/bin/clobberall') diff --git a/dotfiles/system/.local/bin/clobberall b/dotfiles/system/.local/bin/clobberall new file mode 100755 index 0000000..a570d4e --- /dev/null +++ b/dotfiles/system/.local/bin/clobberall @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# clobberall +# Repeatedly kills all processes with the given name until none remain +# Usage: clobberall +# +# Craig Jennings + +if [ $# -eq 0 ]; then + echo "Usage: clobberall " + echo "Example: clobberall emacs" + exit 1 +fi + +process_name="$1" + +while sudo killall "$process_name" 2>/dev/null; do + sleep 0.1 +done + +echo "All '$process_name' processes terminated." -- cgit v1.2.3