Compare commits

..

No commits in common. "f9f93101ad7a5c4757f004716e5bc1b42103b04b" and "091c9339f70b428eab746f315648c9e099ef7473" have entirely different histories.

View file

@ -2,29 +2,23 @@
# │ shell │ bash │
# ╰───────┴──────╯
# based on currently running shell
case "${RWX_SHELL}" in
"bash") ;;
# skip illegal syntax to come
*) return ;;
esac
if [ "${RWX_SHELL}" = "bash" ]; then
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}
# shellcheck disable=SC3033
....() {
cd ../../..
}
# shellcheck disable=SC3033
.....() {
cd ../../../..
}
fi