Help for this page
open(INPUT,"filename.txt") or die "Will not open input: $!"; open(OUTPUT,">output.txt") or die "Will not open output: $!"; ... } close OUTPUT; close INPUT;
perl -ple"BEGIN{$/=\164}" filename.txt >output.txt