in reply to Re: auto add a carriage return in front of a line feed, how to delete this auto character.
in thread auto add a carriage return in front of a line feed, how to delete this auto character.
it works well for big-endianbinmode TARGET_FILE; my $outputstring = pack("n*", @list); print TARGET_FILE $outputstring;
it is still auto add a carriage return in front of a line feed, any ideas?binmode TARGET_FILE; my $outputstring = pack("v*", @list); print TARGET_FILE $outputstring;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: auto add a carriage return in front of a line feed, how to delete this auto character.
by ikegami (Patriarch) on May 21, 2008 at 06:18 UTC |