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