Shell : Convert Hexadecimal to Decimal

How do I convert hex number to decimal number using a shell script under UNIX / Linux operating systems? Hexadecimal (hex) is a numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or a through f) to represent values ten to fifteen.bc […]

Read Me