From f894ba1904a6c87bba03966558f84528dcda418e Mon Sep 17 00:00:00 2001 From: Varun Vijayaraghavan Date: Fri, 31 Oct 2014 22:48:31 -0400 Subject: [PATCH] redirect output from $open_cmd to /dev/null this will remove the somewhat unnecessary "appending to nohup.out" message --- 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..4025ccbb0 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& }