Post
Topic
Board Off-topic
Re: A puzzle for you
by
kseistrup
on 31/05/2011, 07:22:33 UTC

Are you feeding xxd line breaks?
xxd -r -p [FileContainingOneLineOfTheDataInMyFirstPost]

You could

Code:

$ tr -d ' \n' < [FileContainingTheDataInTheFirstPost] | xxd -p -r > [FileContainingBinaryData]


Cheers,