I already tried this, I opened a a.out file with a text editor but I get only a bunch of characters with some instructions in it like:

üÙ

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

Try hexdump. Something like:

$ hexdump -X a.out

It will give you just that: an hexadecimal dump of the file.

Having said that, another possibility might include using GDB's disassemble command.

link|improve this answer
feedback

Lookup your local friendly Hex Editor.

link|improve this answer
feedback

To see the disassembly (with opcode bytes) of the code only, not including any file headers:

objdump -d a.aot
link|improve this answer
feedback

Executable files come in several formats. For Unix/Linux it's ELF: http://en.wikipedia.org/wiki/Executable_and_Linkable_Format

For Windows it's PE: http://en.wikipedia.org/wiki/Portable_Executable

Use the objdump tools to see the opcodes as others have pointed out

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.