How to convert hex to dec in Linux terminal?


Welcome to the next pikoTutorial !

Conversion from hexadecimal to decimal

Add the following function to your .bashrc file:

Bash
function todec {
    echo "ibase=16; $1" | bc
}

Usage:

Bash
~$ todec AA12CE
11145934

Conversion from decimal to hexadecimal

Add the following function to your .bashrc file:

Bash
function tohex {
    echo "obase=16; $1" | bc
}

Usage:

Bash
~$ tohex 11145934
AA12CE