in reply to Removing Control Characters from a File
This seems to suggest your problem is in some other part of your pipeline (maybe some other program is processing your output?), or you don't use the standard while(<>) method of reading lines from a file.
You can ofcourse filter out the ^X characters by doing something like:
Update: ofcourse, the program you're referring to might not be yours, it might not even be perl (booh! hiss!) - in that case: see the comment by Abigail-II (Never knew there were 2)while (<>) { s/\30//g; # ... do stuff }
-- Joost downtime n. The period during which a system is error-free and immune from user input.
|
|---|