DEBSOURCES
Skip Quicknav
sources / systemd / 259-1 / debian / tests / process-killer
123456789
#!/bin/sh # loop until we can kill the process given in arg while : do /usr/bin/pkill -x $* [ $? -eq 0 ] && break sleep 1 done