I've found answer on this post, in particular in one the comments that suggested to use dc - an arbitrary precision calculator:
Here is how you would convert binary to decimal it in linux:
echo "2 i BINARY BITS p" | dc
example:
echo "2 i 11000000111001 p" | dc
and decimal to binary
echo "2 o DECIMAL NUMBER p" | dcexample
echo "2 o 12345 p" | dc
That's it! Thanks to Vocho Amerillo
No comments:
Post a Comment