parent
091c9339f7
commit
259aae444a
1 changed files with 5 additions and 3 deletions
|
@ -2,23 +2,25 @@
|
||||||
# │ shell │ bash │
|
# │ shell │ bash │
|
||||||
# ╰───────┴──────╯
|
# ╰───────┴──────╯
|
||||||
|
|
||||||
if [ "${RWX_SHELL}" = "bash" ]; then
|
[ "${RWX_SHELL}" = "bash" ] ||
|
||||||
|
return
|
||||||
|
|
||||||
# shellcheck disable=SC3033
|
# shellcheck disable=SC3033
|
||||||
..() {
|
..() {
|
||||||
cd ..
|
cd ..
|
||||||
}
|
}
|
||||||
|
|
||||||
# shellcheck disable=SC3033
|
# shellcheck disable=SC3033
|
||||||
...() {
|
...() {
|
||||||
cd ../..
|
cd ../..
|
||||||
}
|
}
|
||||||
|
|
||||||
# shellcheck disable=SC3033
|
# shellcheck disable=SC3033
|
||||||
....() {
|
....() {
|
||||||
cd ../../..
|
cd ../../..
|
||||||
}
|
}
|
||||||
|
|
||||||
# shellcheck disable=SC3033
|
# shellcheck disable=SC3033
|
||||||
.....() {
|
.....() {
|
||||||
cd ../../../..
|
cd ../../../..
|
||||||
}
|
}
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue