rwx/sh/shell/bash.sh
2025-07-07 21:43:48 +02:00

24 lines
370 B
Bash

# ╭───────┬──────╮
# │ shell │ bash │
# ╰───────┴──────╯
if [ "${RWX_SHELL}" = "bash" ]; then
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}
# shellcheck disable=SC3033
....() {
cd ../../..
}
# shellcheck disable=SC3033
.....() {
cd ../../../..
}
fi