http://qs321.pair.com?node_id=1147454


in reply to Re: One-liner only checking the first line of the input file
in thread One-liner only checking the first line of the input file

perl -lane 'print $_; exit;' input.txt > output.txt

Output.txt appears identical to the input file - all lines are printed.

Replies are listed 'Best First'.
Re^3: One-liner only checking the first line of the input file
by stevieb (Canon) on Nov 11, 2015 at 14:41 UTC

    Do this:

    perl -anE '/(\R)/; say unpack("H*", $1);' input.txt

    It appears as your file is being read as one long string. If you're on *nix, your output should be 0a per line for as many lines you have in the file. Post what the output shows.

      Outputs 0d only once.

        That's a MacOS line ending \r, aka a carriage return. See if this works:

        perl -012 -lane 'print "$F[2]\t$F[7]" if $F[7] > 0' < input.txt

        The -0 flag sets the input record separator (line ending) to \r in octal form.