File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 11# rcv
22
33An exceedingly simple C program used for quick conversion between radicies.
4+
5+ ## Usage
6+
7+ ` rcv [OPTION...] [INPUT_NUMBER] `
8+
9+ ## Options
10+
11+ * ` -b, --bin ` : Output as a binary number (radix 2)
12+ * ` -c, --coct-prefix ` : Use a C-style octal prefix (leading 0) instead of a Rust-style octal prefix (leading 0o)
13+ * ` -i --dec ` : (Default) output as a signed decimal number (radix 10)
14+ * ` -n, --no-newline ` : Omit the line feed at the end of the output
15+ * ` -o, --oct ` : Output as an octal number (radix 8)
16+ * ` -p, --no-prefix ` : Omit the prefix for hexadecimal, octal, and binary output
17+ * ` -u, --dec ` : Output as an unsigned decimal number (radix 10)
18+ * ` -x, --hex ` : Output as a hexadecimal number (radix 16)
19+ * ` -?, --help ` : Display the help page
20+ * ` -V, --version ` : Print program version
You can’t perform that action at this time.
0 commit comments