I assume I am doing something stupid here. But I just cant figure out what is going on. The first line from reading bash output is missing see here:

# Read in output my $content; while( my $line = <> ) { print $line; }
Then example:
root@dev [/projects/stdin]# head /var/log/messages | ./test Oct 7 01:30:02 dev modprobe: FATAL: Module ip_tables not found. Oct 7 02:00:01 dev last message repeated 3 times Oct 7 02:30:01 dev last message repeated 6 times Oct 7 03:00:01 dev last message repeated 3 times Oct 7 03:30:01 dev last message repeated 3 times Oct 7 04:00:02 dev last message repeated 3 times Oct 7 04:30:02 dev last message repeated 6 times Oct 7 05:00:01 dev last message repeated 3 times Oct 7 05:30:01 dev last message repeated 3 times

So yeah.... head by default shows 10 lines, however when piped I am only getting 9.

Update: oohhhhh nvm, i had a -n in the shebang, thanks!


In reply to STDIN missing first line by morissette

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.