29 lines
257 B
Bash
29 lines
257 B
Bash
# shorten alias
|
|
a() {
|
|
alias \
|
|
"${@}"
|
|
}
|
|
|
|
# swap directory (current ↔ previous)
|
|
sd() {
|
|
cd \
|
|
- ||
|
|
return
|
|
}
|
|
|
|
# exit terminal
|
|
x() {
|
|
exit \
|
|
"${@}"
|
|
}
|
|
|
|
# back
|
|
|
|
# shellcheck disable=SC3033
|
|
..() {
|
|
cd ..
|
|
}
|
|
# shellcheck disable=SC3033
|
|
...() {
|
|
cd ../..
|
|
}
|