I\'ve got a binary installed on my system, and would like to look at the disassembly of a given function. Preferrably using objdump, but other solutions would b
objdump
To simplify the usage of awk for parsing objdump's output relative to other answers:
objdump -d filename | sed '/<functionName>:/,/^$/!d'