Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: How to read from shell command and terminate it afterwards?

by Wen (Initiate)
on Feb 10, 2012 at 06:38 UTC ( [id://952924]=note: print w/replies, xml ) Need Help??


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

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

Replies are listed 'Best First'.
Re^3: How to read from shell command and terminate it afterwards?
by chessgui (Scribe) on Feb 10, 2012 at 06:55 UTC
    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); }
Re^3: How to read from shell command and terminate it afterwards?
by rovf (Priest) on Feb 10, 2012 at 10:59 UTC
    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 :).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://952924]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-23 20:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found