# ╭───────┬──────╮ # │ shell │ bash │ # ╰───────┴──────╯ if [ "${RWX_SHELL}" = "bash" ]; then # shellcheck disable=SC3033 ..() { cd .. } # shellcheck disable=SC3033 ...() { cd ../.. } # shellcheck disable=SC3033 ....() { cd ../../.. } # shellcheck disable=SC3033 .....() { cd ../../../.. } fi