open: put new process in the background
authorColin P. McCabe <cmccabe@apache.org>
Sun, 29 Dec 2024 23:14:09 +0000 (15:14 -0800)
committerColin P. McCabe <cmccabe@apache.org>
Sun, 29 Dec 2024 23:14:09 +0000 (15:14 -0800)
open

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.