Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

echo "obase=16; 34" | bc

( echo "obase=16" ; cat file_of_integers ) | bc

hexidecimal: to decimal :
$ echo $((0xfee10000))
4276158464
Decimal to hexidecimal:
$ printf '%x\n' 26
1a

You might also like