This is the thing bugging me. I'd like to see some of my files in binary or plaintext format, but I can't figure out how to do it for all files. I can open some image files in plaintext using Textedit, but that's all I can figure out. Anyone know anything?

link|improve this question

60% accept rate
feedback

6 Answers

I'd recommend TextWrangler as a good general purpose plain-text editor. If you have this in the Dock, you can drag any file on to it and the file will be opened as plain text.

link|improve this answer
feedback

The editor of my choice for these kinds of things is Smultron.

link|improve this answer
feedback

I use HexEdit for this sort of thing. It can open any file and give you its hex and plaintext representation.

link|improve this answer
feedback

You can use Emacs hexl-mode.

In the terminal, type 'emacs' and the name of the file you want to open. When emacs opens up the file, type option-x hexl-mode.

link|improve this answer
feedback

You can always drop into a Terminal shell session, and use cat or hexdump to view any file as a text or hexadecimal file.

TextEdit will also display plain text files (as will about any other text editor, as noted by others).

link|improve this answer
feedback

Use "od -h filename | less" in your Terminal.app.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.