Fix error in bash aliases
This commit is contained in:
parent
10fac2593f
commit
183abcc9bb
1 changed files with 5 additions and 2 deletions
|
|
@ -3,4 +3,7 @@ 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
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue