Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^10: How can I read DATA in parent and child?

by tybalt89 (Monsignor)
on Feb 20, 2019 at 10:06 UTC ( [id://1230233]=note: print w/replies, xml ) Need Help??


in reply to Re^9: How can I read DATA in parent and child?
in thread How can I read DATA in parent and child?

See Re^3: How can I read DATA in parent and child? fdopen doesn't help, it's still the same shared seek pointer. *nix doesn't do what you want. If you want to do reads on handles, try this instead.

#!/usr/bin/perl # https://perlmonks.org/?node_id=1230099 use strict; use warnings; open my $x, '<', \do { local $/; <DATA> }; my $who = fork() ? 'p' : 'c'; while( <$x> ) { print "$who $_"; } 1 while wait > 0; __DATA__ a b c d e

Log In?
Username:
Password:

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

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

    No recent polls found