# ╭───────┬──────╮ # │ shell │ bash │ # ╰───────┴──────╯ # based on currently running shell case "${RWX_SHELL}" in "bash") ;; # skip illegal syntax to come *) return ;; esac # shellcheck disable=SC3033 ..() { cd .. } # shellcheck disable=SC3033 ...() { cd ../.. } # shellcheck disable=SC3033 ....() { cd ../../.. } # shellcheck disable=SC3033 .....() { cd ../../../.. }