mirror of
https://github.com/kvz/bash3boilerplate.git
synced 2024-12-24 16:36:40 +00:00
785e7e9f8b
* Cleanup all *.sh following shellcheck advice Closes #79 * do not shellcheck scripts out of our control
17 lines
444 B
Bash
17 lines
444 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)"
|
|
|
|
echo "ACCPTST:STDIO_REPLACE_DATETIMES"
|
|
|
|
(
|
|
env LOG_LEVEL=6 bash "${__root}/main.sh" --file /tmp/x;
|
|
env LOG_LEVEL=6 bash "${__root}/main.sh" --file=/tmp/x;
|
|
env LOG_LEVEL=6 bash "${__root}/main.sh" -f /tmp/x
|
|
) 2>&1 |grep arg_f
|