12 lines
139 B
Bash
12 lines
139 B
Bash
#!/bin/bash
|
|
|
|
clean_exit() {
|
|
kill -TERM $child 2>/dev/null
|
|
}
|
|
|
|
trap clean_exit EXIT
|
|
|
|
/opt/couchdb/bin/couchdb "$@" &
|
|
child=$!
|
|
|
|
wait $child
|