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
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