Hello monks,

I'm using the following code to remove new line characters from the end of a data file.

#!/perl/bin/perl.exe -w use strict; use vars qw($cur_pos $buf); my $file = $ARGV[0]; open my $fh, "+<$file" or die "$!"; my $size = 4096; seek $fh, -$size, 2; while (1) { $cur_pos = tell $fh; read $fh, $buf, $size; last if $buf =~ m/\S/s; seek $fh, -$size*2, 1; } $buf =~ m/(\s*)$/s; $cur_pos += $-[0] || 0; truncate $fh, ++$cur_pos if $cur_pos; close $fh;
And this is what I'm using for a data file
0x130002a; 12.23.34.45; 0x2c60021; RstoneSwRtr 0x130009d; 12.23.34.45; 0x3c6000e; LucentP550R 0x13000fa; 1.2.3.4; 0x21000c; Rtr_Cisco 0x130012e; 1.2.3.4; 0x21000c; Rtr_Cisco 0x1300183; 1.2.3.4; 0x21b001d; 6H262_18 0x13001a8; 1.2.3.4; 0x2c60021; RstoneSwRtr 0x13001f9; 1.2.3.4; 0x21000c; Rtr_Cisco

The problem is that truncate is removing everything from the underscore in Rtr_Cisco down instead of leaving Rtr_Cisco intact.

data file looks like this after truncated

0x130002a; 12.23.34.45; 0x2c60021; RstoneSwRtr 0x130009d; 12.23.34.45; 0x3c6000e; LucentP550R 0x13000fa; 1.2.3.4; 0x21000c; Rtr_Cisco 0x130012e; 1.2.3.4; 0x21000c; Rtr_Cisco 0x1300183; 1.2.3.4; 0x21b001d; 6H262_18 0x13001a8; 1.2.3.4; 0x2c60021; RstoneSwRtr 0x13001f9; 1.2.3.4; 0x21000c; Rtr_
Does anyone have any idea whats going wrong?
Thanks

In reply to File Truncation Problem by The_Rev

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.