diff --git a/sh/shell/bash.sh b/sh/shell/bash.sh index 627079b..400f83c 100644 --- a/sh/shell/bash.sh +++ b/sh/shell/bash.sh @@ -1,4 +1,8 @@ -[ "${RWX_SHELL}" = "bash" ] || return +# ╭───────┬──────╮ +# │ shell │ bash │ +# ╰───────┴──────╯ + +if [ "${RWX_SHELL}" = "bash" ]; then # shellcheck disable=SC3033 ..() { @@ -16,3 +20,5 @@ .....() { cd ../../../.. } + +fi