Convert Hex to Decimal Linux Command Line

Quick tip to convert hex to decimal / decimal to hex on the Linux command line using the printf command.
Hex to Decimal

printf %d
 0x0000000A
10

Decimal to Hex

printf %x
 10
a

Published by

Rich

Just another IT guy.

Leave a Reply

Your email address will not be published. Required fields are marked *