--- /dev/null
+##tohex
+
+ * `-l` - output numbers with lowercase characters
+ * `-m` - output only the converted numbers
+ * `-n` - output a single line (space-separated with `-m`, semicolon as the separator otherwise)
+ * `-p` - add `0x` prefix to the result
+
+##tobin
+
+ * `-m` - output only the converted numbers
+ * `-n` - output a single line (space-separated with `-m`, semicolon as the separator otherwise)
+ * `-p` - add `0b` prefix to the result
+
+##todec
+
+ * `-m` - output only the converted numbers
+ * `-n` - output a single line (space-separated with `-m`, semicolon as the separator otherwise)
+ * `-K` - divide the result by *1024* and append `K` to the result
+ * `-M` - divide the result by *1,048,576* and append `M` to the result
+ * `-G` - divide the result by *1,073,741,824* and append `G` to the result