## dc branch

Using the dc-based branch might be beneficial for systems where `bc` is a `dc` wrapper, `printf` command does not support base conversion, etc.

In short, it should be even more portable.

## Usage

### tohex

 * `-l` - output numbers with lowercase characters
 * `-m` - output only the converted numbers
 * `-n` - output all in a single line (space-separated with `-m`, semicolon as the separator otherwise)
 * `-p` - add `0x` prefix to the resulting numbers

### tobin

 * `-m` - output only the converted numbers
 * `-n` - output all in a single line (space-separated with `-m`, semicolon as the separator otherwise)
 * `-p` - add `0b` prefix to the resulting numbers

### todec

 * `-m` - output only the converted numbers
 * `-n` - output all in a single line (space-separated with `-m`, semicolon as the separator otherwise)
 * `-K` - convert the results into _K_ units (2^10^)
 * `-M` - convert the results into _M_ units (2^20^)
 * `-G` - convert the results into _G_ units (2^30^)
