Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I send objdump result to a file?

I want to run objdump on an execuatble file in windows XP, and want to observe the details. However, I am unable to find option to output the result in a text file - since the output display in console is chopped off (I also tried using the options -o or /out to specify ooutfilename, but do not seem to exist)

like image 1000
paseena Avatar asked Mar 22 '11 00:03

paseena


1 Answers

Doesn't the shell's normal output redirection work for you? Example:

objdump -d file.o > file.txt
like image 130
Carl Norum Avatar answered Sep 28 '22 18:09

Carl Norum