http://www.perlmonks.org?node_id=508337


in reply to How do I run a background command via Net::SSH::W32Perl

There are 2 ways I know of:
#backticks using start<br> my $rv = `start exceed.exe`; #system using the 1 option system( 1, "exceed.exe" );
JamesNC

Replies are listed 'Best First'.
Re^2: How do I run a background command via Net::SSH::W32Perl
by boat73 (Scribe) on Nov 14, 2005 at 16:18 UTC
    Perhaps I am not following your response. This looks like a solution toward starting the exceed process on my win32 system. What I am looking for is a method of running a command in the background on the remote Unix system via Net::SSH::W32Perl.
      Hi boat73,

      Perhaps man nohup would be worth reading.

      Hope this helps.

      Martin
      sorry about that... perhaps you need to escape the \& ??