diff options
author | xyz <gky44px1999@gmail.com> | 2021-09-23 22:02:06 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-09-23 22:02:06 -0700 |
commit | b32853ccc76750c1c6e04db4ba61b3c4d9d187c1 (patch) | |
tree | 7b6c249c09ab5ac7618e92f0201047a7e3e86fa7 /.local/bin/o | |
parent | fdcce350a48bc6de17ad2d4a68b361019aaa4a09 (diff) |
o, bug fix? close stderr
Diffstat (limited to '.local/bin/o')
-rwxr-xr-x | .local/bin/o | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/o b/.local/bin/o index 6bf467a9..2e1230fd 100755 --- a/.local/bin/o +++ b/.local/bin/o @@ -3,4 +3,4 @@ # I don't care about errors, I don't want to handle errors, just shut up please. # I don't understand nohup, may be useful in the future # https://wiki.archlinux.org/title/default_applications -xdg-open "$@" 0<&- >&- 2>&1 & +xdg-open "$@" 0<&- >&- 2>&- & |