24 lines
370 B
Bash
24 lines
370 B
Bash
# ╭───────┬──────╮
|
|
# │ shell │ bash │
|
|
# ╰───────┴──────╯
|
|
|
|
if [ "${RWX_SHELL}" = "bash" ]; then
|
|
|
|
# shellcheck disable=SC3033
|
|
..() {
|
|
cd ..
|
|
}
|
|
# shellcheck disable=SC3033
|
|
...() {
|
|
cd ../..
|
|
}
|
|
# shellcheck disable=SC3033
|
|
....() {
|
|
cd ../../..
|
|
}
|
|
# shellcheck disable=SC3033
|
|
.....() {
|
|
cd ../../../..
|
|
}
|
|
|
|
fi
|