rwx/sh/alias/shell.sh

30 lines
288 B
Bash
Raw Permalink Normal View History

2024-11-19 15:22:07 +00:00
# shorten alias
a() {
alias \
"${@}"
}
# swap directory (current ↔ previous)
sd() {
cd \
- ||
return
}
# exit terminal
x() {
exit \
"${@}"
}
2024-11-29 21:18:29 +00:00
[ "${RWX_SHELL}" = "bash" ] || return
2024-11-19 15:22:07 +00:00
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}