diff --git a/sh/shell/bash.sh b/sh/shell/bash.sh index 2f5d2d8..30584fa 100644 --- a/sh/shell/bash.sh +++ b/sh/shell/bash.sh @@ -29,3 +29,18 @@ esac .....() { cd ../../../.. } + +# shellcheck disable=SC3033 +......() { + cd ../../../../.. +} + +# shellcheck disable=SC3033 +.......() { + cd ../../../../../.. +} + +# shellcheck disable=SC3033 +........() { + cd ../../../../../../.. +}