in reply to How to read from shell command and terminate it afterwards?

If you are sure that the process has finished its useful job and you have the pid you can kill it. I think it is best to open it as a pipe. Then you will both have the pid and can read from its STDOUT.
  • Comment on Re: How to read from shell command and terminate it afterwards?

Replies are listed 'Best First'.
Re^2: How to read from shell command and terminate it afterwards?
by Wen (Initiate) on Feb 10, 2012 at 06:38 UTC

    Thank you, chessgui. Unfortunately I am new to perl. Could you give me a code snippet? In shell I would have done something like that:

    mDNS -L "Name" _services._tcp domain. & sleep 2 kill -s SIGINT $!

    In perl it sounds like much more complicated

    Thanks,

    Wen

      This is a rough solution. Note that this works on Windows. You have to find out how to kill a process on your particular system. Stars cmd.exe (in your system replace cmd.exe with the desired shell command), waits for its output to exceed 40 bytes then prints the output, kills cmd.exe, waits for user input, then quits.
      use IPC::Open3; use IO::Handle; use threads; use Win32::Process::Kill; $process='cmd.exe'; $pid = open3( \*CHILD_IN, \*CHILD_OUT, \*CHILD_ERR, $process ); autoflush CHILD_OUT; autoflush CHILD_ERR; threads->create(\&handle_child_out)->detach; threads->create(\&handle_child_err)->detach; unlink('out.txt'); do { open IN,'out.txt'; my $content=join('',<IN>); my $l=length($content); print "Number of bytes read: $l\n"; if($l>40) { print $content; Kill($pid); print "Ready.\n"; $x=<>; exit; } sleep(1); } while(1); sub handle_child_out { do { sysread CHILD_OUT, $content, 4092; if($content ne '') { open OUT,'>>out.txt'; print OUT $content; close OUT; } } while(1); } sub handle_child_err { do { sysread CHILD_ERR, $content, 4092; if($content ne '') { open OUT,'>>out.txt'; print OUT $content; close OUT; } } while(1); }
      Aside from the (excellent) solutions proposed here, which explain how to do this in Perl, you could also wrap the three lines you presented us, in a shell script and invoke this script in the usual way (using backticks) from Perl.

      -- 
      Ronald Fischer <ynnor@mm.st>
        True :).