mirror of
https://github.com/kvz/bash3boilerplate.git
synced 2025-02-04 08:30:38 +00:00
16 lines
341 B
Bash
16 lines
341 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -o pipefail
|
||
|
set -o errexit
|
||
|
set -o nounset
|
||
|
# set -o xtrace
|
||
|
|
||
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
__root="$(cd "$(dirname "$(dirname "$(dirname "${__dir}")")")" && pwd)"
|
||
|
|
||
|
export LOG_LEVEL=7
|
||
|
|
||
|
echo "ACCPTST:STDIO_REPLACE_DATETIMES"
|
||
|
|
||
|
# shellcheck source=example.sh
|
||
|
source "${__root}/example.sh" -f /tmp/x
|