shell/bash

This commit is contained in:
Marc Beninca 2025-07-07 21:38:07 +02:00
parent 2480e490be
commit a06bab3e97
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 18 additions and 11 deletions

View file

@ -16,14 +16,3 @@ x() {
exit \ exit \
"${@}" "${@}"
} }
[ "${RWX_SHELL}" = "bash" ] || return
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}

18
sh/shell/bash.sh Normal file
View file

@ -0,0 +1,18 @@
[ "${RWX_SHELL}" = "bash" ] || return
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}
# shellcheck disable=SC3033
....() {
cd ../../..
}
# shellcheck disable=SC3033
.....() {
cd ../../../..
}