TorVirt/gateway/wait.sh

9 lines
87 B
Bash
Executable File

#!/bin/sh
# wait for USR1
sleep infinity & PID=$!
trap "kill $PID" USR1
wait
exec $@