DEV Community

Cover image for How to convert hex to dec in Linux terminal?
pikoTutorial
pikoTutorial

Posted on • Originally published at pikotutorial.com

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:

function todec {
    echo "ibase=16; $1" | bc
}
Enter fullscreen mode Exit fullscreen mode

Usage:

~$ todec AA12CE
11145934
Enter fullscreen mode Exit fullscreen mode

Conversion from decimal to hexadecimal

Add the following function to your .bashrc file:

function tohex {
    echo "obase=16; $1" | bc
}
Enter fullscreen mode Exit fullscreen mode

Usage:

~$ tohex 11145934
AA12CE
Enter fullscreen mode Exit fullscreen mode

Top comments (0)