10 lines
112 B
Bash
Executable File
10 lines
112 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Start a relpicator
|
|
#
|
|
|
|
here=$(dirname "$0")
|
|
exec "$here"/fullnode.sh --replicator "$@"
|
|
|
|
|