mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-27 03:05:39 +01:00
redirect output from $open_cmd to /dev/null
this will remove the somewhat unnecessary "appending to nohup.out" message
This commit is contained in:
parent
7f07facf41
commit
f894ba1904
1 changed files with 1 additions and 2 deletions
|
|
@ -37,8 +37,7 @@ function web_search() {
|
||||||
done
|
done
|
||||||
|
|
||||||
url="${url%?}" # remove the last '+'
|
url="${url%?}" # remove the last '+'
|
||||||
nohup $open_cmd "$url"
|
nohup $open_cmd "$url"&> /dev/null&
|
||||||
rm nohup.out
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue