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
}
Usage:
~$ todec AA12CE
11145934
Conversion from decimal to hexadecimal
Add the...
pikotutorial.hashnode.dev1 min read