19 lines
239 B
Bash
19 lines
239 B
Bash
|
[ "${RWX_SHELL}" = "bash" ] || return
|
||
|
|
||
|
# shellcheck disable=SC3033
|
||
|
..() {
|
||
|
cd ..
|
||
|
}
|
||
|
# shellcheck disable=SC3033
|
||
|
...() {
|
||
|
cd ../..
|
||
|
}
|
||
|
# shellcheck disable=SC3033
|
||
|
....() {
|
||
|
cd ../../..
|
||
|
}
|
||
|
# shellcheck disable=SC3033
|
||
|
.....() {
|
||
|
cd ../../../..
|
||
|
}
|