shell
This commit is contained in:
parent
049eaaff6f
commit
9b05b663da
2 changed files with 31 additions and 32 deletions
|
@ -1,32 +0,0 @@
|
|||
# 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 ../..
|
||||
}
|
|
@ -110,3 +110,34 @@ shell_setup() {
|
|||
rm --force --recursive "${file}"
|
||||
ln --symbolic "${ENV}" "${file}"
|
||||
}
|
||||
|
||||
# shorten alias
|
||||
a() {
|
||||
alias \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# swap directory (current ↔ previous)
|
||||
sd() {
|
||||
cd \
|
||||
- ||
|
||||
return
|
||||
}
|
||||
|
||||
# exit terminal
|
||||
x() {
|
||||
exit \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# shellcheck disable=SC2154
|
||||
[ "${SH}" = "bash" ] || return
|
||||
|
||||
# shellcheck disable=SC3033
|
||||
..() {
|
||||
cd ..
|
||||
}
|
||||
# shellcheck disable=SC3033
|
||||
...() {
|
||||
cd ../..
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue