Convert binary to decimal at the command line
If you have a binary number that you'd like to see in decimal form you can run the command:
> printf '%d\n' 0b10001001
137
Tweet
If you have a binary number that you'd like to see in decimal form you can run the command:
> printf '%d\n' 0b10001001
137
Tweet