9 lines
252 B
Bash
Executable file
9 lines
252 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ "$(realpath "$(dirname "$(realpath -s "$0")")/../../../")" == "/" ]]; then
|
|
. /usr/local/libexec/zio/helpers/bash.sh
|
|
else
|
|
. "$(dirname "$(realpath -s "$0")")/../libexec/zio/helpers/bash.sh"
|
|
fi
|
|
|
|
podman_exec $1 "${@:2}"
|