9 lines
123 B
Bash
9 lines
123 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Start a dynamically-configured full node
|
||
|
#
|
||
|
|
||
|
here=$(dirname "$0")
|
||
|
|
||
|
exec "$here"/fullnode.sh -x "$@"
|