Can someone help me to convert a hexadecimal number to decimal number in a shell script?
E.g., I want to convert the hexadecimal number bfca3000 to deci
bfca3000
Shortest way yet:
$ echo $[0x3F] 63