8 lines
134 B
Bash
8 lines
134 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Start a dynamically-configured replicator
|
||
|
#
|
||
|
|
||
|
here=$(dirname "$0")
|
||
|
exec "$here"/replicator.sh --label x$$ "$@"
|