10/23 From a C programmar who knows just enuff to be dangerous,
\_ wut r u gonna do,
nibble my bun?
how to I convert a binary text file to plain text file? Do
I have to get each character one at a time, check for 0x1a, etc.
before writing it in text? Thanx - mtbb.
\_ man strings. WTF is a "binary text file" anyway? Everything is
in binary if you want to be anal about it and otherwise, it's
either binary -or- text. What are you talking about?
\_ He's referring to text files terminated with CR/LF vs. CR,
otherwise known as dos-tyle text and Unix-style text. To
the original poster: try "todos" -mogul
the original poster: try "todos". If that doesn't suit you,
and you'd rather do this with C than with tr or perl, then you
need to open the file in binary mode and do exactly what you
propose, though you can be much more efficient by working on
larger chunks of data before writing it out. --mogul
\_ Just in case you're actually trying to get this done
rather than theorize about how to do it in C:
DOS -> UNIX: perl -pi -e 's/\r//g' filename
DOS -> UNIX: perl -pi -e 's/\r//g' filenames
\_ I think you mean
perl -pi -e 's/\r\n/\n/g' filenames
UNIX -> DOS: perl -pi -e 's/\n/\r\n/g' filename
UNIX -> MAC: perl -pi -e 's/\n/\r/g' filename
MAC -> UNIX: perl -pi -e 's/\r/\n/g' filename
I'll leave the DOS to MAC conversions as an exciting
exercise to the reader. --dbushong
\_ Will the dos to mac conversions be on the midterm? Do I
have to know that stuff?
\-emacs dos-mode --psb
\_ Will *that* also be on the midterm? Is it open
book?
\_ Midterm question: Do the above conversion
using only nroff
\_ Oh come on... I thought this was supposed
to be an advanced course! What's with the
baby questions? |