26 lines
371 B
Bash
26 lines
371 B
Bash
# ╭───────┬──────╮
|
|
# │ shell │ bash │
|
|
# ╰───────┴──────╯
|
|
|
|
[ "${RWX_SHELL}" = "bash" ] ||
|
|
return
|
|
|
|
# shellcheck disable=SC3033
|
|
..() {
|
|
cd ..
|
|
}
|
|
|
|
# shellcheck disable=SC3033
|
|
...() {
|
|
cd ../..
|
|
}
|
|
|
|
# shellcheck disable=SC3033
|
|
....() {
|
|
cd ../../..
|
|
}
|
|
|
|
# shellcheck disable=SC3033
|
|
.....() {
|
|
cd ../../../..
|
|
}
|