projects
/
cmccabe-bin
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
4b519a1
)
open: put new process in the background
author
Colin P. McCabe
<cmccabe@apache.org>
Sun, 29 Dec 2024 23:14:09 +0000 (15:14 -0800)
committer
Colin P. McCabe
<cmccabe@apache.org>
Sun, 29 Dec 2024 23:14:09 +0000 (15:14 -0800)
open
patch
|
blob
|
history
diff --git
a/open
b/open
index
a965886
..
f2b8f05
100755
(executable)
--- a/
open
+++ b/
open
@@
-11,11
+11,11
@@
openwith() {
application="${2}"
if [[ -n "${application}" ]]; then
if which "${application}" > /dev/null ; then
- setsid nohup ${application} "${f}" > /dev/null 2> /dev/null
+ setsid nohup ${application} "${f}" > /dev/null 2> /dev/null &
return
fi
fi
- setsid nohup xdg-open "${f}" > /dev/null 2> /dev/null
+ setsid nohup xdg-open "${f}" > /dev/null 2> /dev/null &
}
# Determine what command to run based on file extension.