dotfiles/bin/svdel

7 lines
100 B
Text
Raw Normal View History

#!/usr/bin/env sh
cd /run/runit/service || exit
2024-04-13 16:12:15 +02:00
for service in "$@"; do
unlink -- "$service"
done