Read Write eXecute framework
rwx.rwx.work
1# ╭───────┬──────╮
2# │ shell │ bash │
3# ╰───────┴──────╯
4
5# based on currently running shell
6case "${RWX_SHELL}" in
7# continue if it can handle it
8"bash") ;;
9# otherwise skip incorrect names to come
10*) return ;;
11esac
12
13# shellcheck disable=SC3033
14..() {
15 cd ..
16}
17
18# shellcheck disable=SC3033
19...() {
20 cd ../..
21}
22
23# shellcheck disable=SC3033
24....() {
25 cd ../../..
26}
27
28# shellcheck disable=SC3033
29.....() {
30 cd ../../../..
31}
32
33# shellcheck disable=SC3033
34......() {
35 cd ../../../../..
36}
37
38# shellcheck disable=SC3033
39.......() {
40 cd ../../../../../..
41}
42
43# shellcheck disable=SC3033
44........() {
45 cd ../../../../../../..
46}