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