Skip to content

Instantly share code, notes, and snippets.

@OpenGrid
Created August 3, 2011 21:46
Show Gist options
  • Save OpenGrid/1123868 to your computer and use it in GitHub Desktop.
Save OpenGrid/1123868 to your computer and use it in GitHub Desktop.
HEXdump in HTML conversion to binary from Grooveshark about:cache?device=memory cache file
cat inputFileName | grep -e '[0-9a-f][0-9a-f][0-9a-f][0-9a-f]:'| \
sed -u 's/<pre>0000/0000/' | sed -u 's/ / /g' | \
sed -u 's/\([0-9a-f][0-9a-f]\) \([0-9a-f][0-9a-f]\)/\1\2/g' | \
xxd -r > mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment