dottie/2024-03-10/bin/base_launch

7 lines
108 B
Plaintext
Raw Normal View History

2024-03-10 20:37:11 -04:00
#!/bin/bash
parts=($1)
killall -q ${parts[0]}
while pgrep -x ${parts[0]} >/dev/null; do sleep 1; done
$1 &