Fix error in bash aliases

This commit is contained in:
Leo Alho 2024-04-14 00:45:59 +03:00
parent 10fac2593f
commit 183abcc9bb

View file

@ -1,6 +1,9 @@
alias gm="git checkout master && git pull"
alias count="ls -l | wc -l"
function gcam () { git commit -a -m "$1";}
function gcam() { git commit -a -m "$1"; }
function dt () { nohup "$@" </dev/null >/dev/null 2>&1 & disown }
function dt() {
nohup "$@" </dev/null >/dev/null 2>&1 &
disown
}