perl -e '
open X, "</etc/passwd";
fork();
while (readline(X)){
print "$$: $_";
sleep 1
}
print "$$: all done\n"
'
I was expecting to see every line printed twice (once by each process, as they don't share a file pointer), or at a push, every line printed once-ish, (if they do).
I definitely wasn't expecting one process not to print anything:
8488: root:x:0:0:root:/root:/bin/bash
8489: all done
8488: daemon:x:1:1:daemon:/usr/sbin:/bin/sh
8488: bin:x:2:2:bin:/bin:/bin/sh
8488: <rest of the file>
8488: all done
Can someone explain what is going on please? At the start of the while loop I would expect the two processes to be identical, bar the return value of fork...
$ perl -v
This is perl 5, version 14, subversion 2 (v5.14.2) built for x86_64-li
+nux-gnu-thread-multi
(with 89 registered patches, see perl -V for more detail)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.