redirect output from $open_cmd to /dev/null

this will remove the somewhat unnecessary "appending to nohup.out" message
This commit is contained in:
Varun Vijayaraghavan 2014-10-31 22:48:31 -04:00
commit f894ba1904

View file

@ -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&
}