mirror of
https://github.com/kvz/bash3boilerplate.git
synced 2025-01-25 05:06:44 +00:00
16 lines
424 B
Bash
16 lines
424 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -o pipefail
|
||
|
set -o errexit
|
||
|
set -o nounset
|
||
|
# set -o xtrace
|
||
|
|
||
|
# Set magic variables for current FILE & DIR
|
||
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
__file="${__dir}/$(basename "${BASH_SOURCE[0]}")"
|
||
|
__base="$(basename ${__file} .sh)"
|
||
|
__root="$(cd "$(dirname $(dirname $(dirname "${__dir}")))" && pwd)"
|
||
|
|
||
|
echo "B3BP:STDIO_REPLACE_DATETIMES"
|
||
|
|
||
|
env LOG_LEVEL=8 bash "${__root}/main.sh" -f /tmp/x
|