A simple CLI tool to display information about the provided input (integers, IP addresses, strings).
console
$ cargo install b0x
console
$ cargo install b0x --force
console
$ b0x <input>...
Supported data types:
- IP addresses
- IPv4: 1.1.1.1
- IPv6: 2606:4700:4700::1111
- Unsigned integers
- Binary: 0b101010
- Octal: 0o52
- Hexadecimal: 0x2A
- Decimal: 42
- Strings
See the built-in help for more information:
console
$ b0x --help
console
$ b0x 1.1.1.1 2606:4700:4700::1111
![screenshot/ip]
console
$ b0x 0xC0FFEE
![screenshot/int]
console
$ b0x "TeSt StRiNg"
![screenshot/str]