sh/shell/alias/shell.sh

30 lines
257 B
Bash
Raw Normal View History

2024-02-28 09:58:41 +00:00
# shorten alias
2024-11-16 13:58:58 +00:00
a() {
alias \
"${@}"
}
2024-02-28 09:58:41 +00:00
2023-05-18 11:24:21 +00:00
# swap directory (current ↔ previous)
2024-11-16 13:58:58 +00:00
sd() {
2024-11-16 14:02:40 +00:00
cd \
- ||
return
2024-11-16 13:58:58 +00:00
}
2023-05-09 20:02:34 +00:00
# exit terminal
2024-11-16 13:58:58 +00:00
x() {
exit \
"${@}"
}
# back
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}