Today I Learned

hashrocket A Hashrocket project

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
See More #command-line TILs