Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Split text files for iPod Notes usage via Perl' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Split text files for iPod Notes usage via Perl
Authored by: mjohnson2 on Jul 22, '08 09:44:38PM

Based on that error message, it looks like maybe you might have transferred that file between Windows and Unix/Linux in ASCII mode and introduced a CRLF problem. I'm making that guess based on the "^M" included in the error message. On Unix, we typically remove that with a sed command: 's/^V^M//g' (where ^V^M are done simultaneously and so only appears as ^M). You could also try transferring again in BINARY mode.



[ Reply to This | # ]