30 lines
452 B
Bash
30 lines
452 B
Bash
# ╭───────┬──────╮
|
|
# │ 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 ../../../..
|
|
}
|