1
0
Fork 0
forked from ahurac/dotfiles
ahuarc-dotfiles/bin/svdel

6 lines
100 B
Bash
Executable file

#!/usr/bin/env sh
cd /run/runit/service || exit
for service in "$@"; do
unlink -- "$service"
done