# File lib/launchy/detect/runner.rb, line 102
      def wet_run( cmd, *args )
        child_pid = fork do
          exec( *shell_commands( cmd, *args ))
          exit!
        end
        Process.detach( child_pid )
      end