From de82ed02dc000b8f70662136506ebeac6a4745a4 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Wed, 9 Jul 2025 23:37:36 +0200 Subject: [PATCH] bash/... --- sh/shell/bash.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 ../../../../../../.. +}