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