vote up 1 vote down star

What i want is to take an integer represented as a string, for example "1234", and convert it to a file called int, containing a 32-bit big endian integer, with the value 1234.

The only way I have figured out to do this is something like

echo 1234 | awk '{printf "0: %08X", $1}' | xxd -r > int

which is a bit nasty!

Does anyone know a better way?

flag
What's so nasty? Its a command that works, use it – Pyrolistical Jan 8 at 1:10
i prefer things like this to only require one tool, like the perl example below. – Patrick_O Jan 8 at 1:45

3 Answers

vote up 4 vote down

A slightly simpler way would be:

printf "0: %08X" 1234 | xxd -r > int
link|flag
vote up 2 vote down check

ok well seeing that mark williams seems to have gone awol i will post the corrected version of his answer

echo 1234 | perl -e 'print pack("N", <STDIN>); > int
link|flag
vote up 0 vote down

this appears to produce the same output on my system. be sure to check perldoc -f pack.

echo '1234' | perl -e 'print pack("nn", 0,<STDIN>);' > int

link|flag
only works for numbers up to 65535 – Patrick_O Jan 8 at 1:55
so what I really want is pack("N",<STDIN>) – Patrick_O Jan 8 at 1:57
yeah, glad you caught my mistake and sorry i didn't take my own advice and consult perldoc first. – mark williams Jan 8 at 2:04
if you update your answer i will mark it as accepted. – Patrick_O Jan 8 at 3:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.