From bcd6d2a9cccec6ebe17d70a694c1e38092c1e7ec Mon Sep 17 00:00:00 2001 From: mkolosick Date: Mon, 13 Oct 2014 20:13:24 -0400 Subject: [PATCH] update web-search to not write to nohup.out --- plugins/web-search/web-search.plugin.zsh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/web-search/web-search.plugin.zsh b/plugins/web-search/web-search.plugin.zsh index 371e3a303..84635a981 100644 --- a/plugins/web-search/web-search.plugin.zsh +++ b/plugins/web-search/web-search.plugin.zsh @@ -37,8 +37,7 @@ function web_search() { done url="${url%?}" # remove the last '+' - nohup $open_cmd "$url" - rm nohup.out + nohup $open_cmd "$url" >/dev/null 2>&1 }