rwx/sh/alias/shell.sh
2025-07-07 21:38:07 +02:00

18 lines
156 B
Bash

# shorten alias
a() {
alias \
"${@}"
}
# swap directory (current ↔ previous)
sd() {
cd \
- ||
return
}
# exit terminal
x() {
exit \
"${@}"
}