shell/standalone
All checks were successful
/ job (push) Successful in 4m56s

This commit is contained in:
Marc Beninca 2025-07-07 05:48:43 +02:00
parent 2480e490be
commit dd90da8a82
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
3 changed files with 54 additions and 32 deletions

View file

@ -1,29 +0,0 @@
# shorten alias
a() {
alias \
"${@}"
}
# swap directory (current ↔ previous)
sd() {
cd \
- ||
return
}
# exit terminal
x() {
exit \
"${@}"
}
[ "${RWX_SHELL}" = "bash" ] || return
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}