sh/shell/alias/shell.sh
2024-11-16 16:37:04 +01:00

32 lines
317 B
Bash

# shorten alias
a() {
alias \
"${@}"
}
# swap directory (current ↔ previous)
sd() {
cd \
- ||
return
}
# exit terminal
x() {
exit \
"${@}"
}
# shellcheck disable=SC2154
[ "${SH}" = "bash" ] || return
# back
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}