rwx/sh/alias/shell.sh

30 lines
288 B
Bash
Raw 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-12-01 19:15:05 +00:00
[ "$(rwx_shell)" = "bash" ] || return
2024-11-19 15:22:07 +00:00
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}