From e291aa340686cc5457af666524b946015f6725cf Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 19 Sep 2016 20:07:19 -0700 Subject: [PATCH] [Linux] Avoid output to nohup.out --- dotfiles/lib/bin/restart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/lib/bin/restart.sh b/dotfiles/lib/bin/restart.sh index b9c1049b..5ce3452f 100755 --- a/dotfiles/lib/bin/restart.sh +++ b/dotfiles/lib/bin/restart.sh @@ -1,3 +1,3 @@ #!/usr/bin/env sh pkill "$1" -nohup "$@" & >"/tmp/$1.out" 2>"/tmp/$1.error" +nohup "$@" >"/tmp/$1.out" 2>"/tmp/$1.error" &