1
0
Fork 0
forked from ahurac/dotfiles
ahuarc-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