8 lines
141 B
Bash
Executable File
8 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
kill_child_jobs() {
|
|
# From https://unix.stackexchange.com/a/544167
|
|
while kill %% 2>/dev/null; do sleep 0; done
|
|
}
|