]> snippets.scripts.mit.edu Git - Scripts/git/.git/blob - programming/disasm
Remove sipbmp3-itunes. See the mac branch of github.com/jhamrick/gutenbach
[Scripts/git/.git] / programming / disasm
1 #!/bin/sh
2
3 file=$(mktemp)
4 echo "$*" | xxd -r -p > "$file"
5 objdump -D -b binary -m i386 "$file" | tail -n +7
6 rm "$file"