Update the FLL program documentation.
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column"><code class="code">--width</code></td>
<td class="column">Set number of columns of Bytes to display.</td>
</tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--normal</code></td>
+ <td class="column">Display <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> symbols for <abbr title="American Standard Code for Information Interchange">ASCII</abbr> control codes.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--simple</code></td>
+ <td class="column">Display spaces for <abbr title="American Standard Code for Information Interchange">ASCII</abbr> control codes.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--classic</code></td>
+ <td class="column">Display periods for <abbr title="American Standard Code for Information Interchange">ASCII</abbr> control codes.</td>
+ </tr>
</tbody>
</table>
</div>
<p class="p">
- The output is broken up into two or three parts.
+ When using the <code class="code">--text</code> option, some <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> characters may be replaced by your instance and cause display alignment issues.
+ </p>
+ <p class="p">
+ Special <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> characters and non-spacing <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> characters may be replaced with a space (or a placeholder when the <code class="code">--placeholder</code> option is used).
+ </p>
+ <p class="p">
+ <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> "Combining" characters might have a space appended to allow a proper display but this may cause copy and paste issues.
+ </p>
+ <p class="p">
+ When --last is used, any <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> sequences will still be printed in full should any part is found within the requested range.
+ </p>
+ <p class="p">
+ When using the <code class="code">--unicode</code> option, invalid Unicode will fallback to being displayed using one of the other modes.
</p>
- <ol>
- <li>The first part, on the left mode side of the output, contains 16 upper case hexidecimal digits representing the maximum length supported by the <strong>byte_dump</strong> program.</li>
- <li>The second part displays the individual bytes in a numeric format or similar (depending on parameters). In the second part, the hexidecimal digits are never swapped based on endianness.</li>
- <li>The third part, which only appears when using the <code class="code">-t/--text<code class="code"> parameter, displays the character each digit or set of digits may represent. Any characters considered unsafe or improper are substituted with a replacement character.</li>
- </ol>
</div>
</section>
</main>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column"><code class="code">--work</code></td>
<td class="column">Use includes/libraries/programs from this directory instead of system.</td>
</tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--disable-doc</code></td>
+ <td class="column">Forcibly do not build documents files.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--enable-doc</code></td>
+ <td class="column">Forcibly do build documents files.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--disable-shared</code></td>
+ <td class="column">Forcibly do not build shared files.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--enable-shared</code></td>
+ <td class="column">Forcibly do build shared files.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--disable-static</code></td>
+ <td class="column">Forcibly do not build static files.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code"></code></td>
+ <td class="column"><code class="code">--enable-static</code></td>
+ <td class="column">Forcibly do build static files.</td>
+ </tr>
</tbody>
</table>
</div>
For example, when a mode of '<code class="code">fll_monolithic</code>' is specified, build libraries from both '<code class="code">build_libraries</code>' and '<code class="code">build_libraries-fll_monolithic</code>' are used (but not '<code class="code">build_libraries-fll_level</code>').
</p>
<p class="p">
- When specifying the <code class="code">fakefile</code> or the settings parameters, the filenames are relative to the data build directory, unless a path is used.
+ When specifying the <code class="code">fakefile</code> or the settings parameters, the project root is seached first and then the build data director is searched when the given file does not contain a directory separator.
+ </p>
+ <p class="p">
+ For example, with '<code class="code">--fakefile my_fakefile</code>' the fakefile at '<code class="code">./my_fakefile</code>' is used if found, but if it is not found then '<code class="code">./data/build/my_fakefile</code>' is used if found.
</p>
<p class="p">
- For example, with '<code class="code">--fakefile my_fakefile</code>' the fakefile at '<code class="code">./data/build/my_fakefile</code>' would be used, however with '<code class="code">--fakefile ./my_fakefile</code>' the fakefile at '<code class="code">./my_fakefile</code>' would be used.
+ For example, with '<code class="code">--fakefile ./my_fakefile</code>' the fakefile at '<code class="code">./my_fakefile</code>' is used if found, but if it is not found then no other paths are attempted.
</p>
<p class="p">
When piping data to this program, the piped data is treated as a <code class="code">fakefile</code>.
</p>
<p class="p">
- Only the <code class="code">make</code> operation is supported when using piped data.
+ Only the <strong>make</strong> operation is supported when using piped data.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<tr class="row">
<td class="column"><code class="code">-n</code></td>
<td class="column"><code class="code">--name</code></td>
- <td class="column">Select FSS using this full or partial type name or code.</td>
+ <td class="column">Select <abbr title="Featureless Settings Specifications">FSS</abbr> using this full or partial type name or code.</td>
</tr>
<tr class="row">
<td class="column"><code class="code">-t</code></td>
When specifying the <code class="code">--total</code> parameter, neither the <code class="code">--object</code> nor the <code class="code">--content</code> parameter may be specified.
</p>
<p class="p">
- An FSS file is identified by the format "<code class="code"># Object-Content</code>" where the Object, is a machine-name representing the name and may only consist of "word" characters and the Content is a 4-digit hexidecimal number representing a particular variant of the Object. This identifier, if provided, must exist on the first line in a file and must begin with the pound character: "<code class="code">#</code>". White space must follow this pound character. There may be multiple Object and Content pairs, separated by white space, such as: "<code class="code"># fss-0002 fss-0000 iki-0002</code>".
+ An <abbr title="Featureless Settings Specifications">FSS</abbr> file is identified by the format "<code class="code"># Object-Content</code>" where the Object, is a machine-name representing the name and may only consist of "word" characters and the Content is a 4-digit hexidecimal number representing a particular variant of the Object. This identifier, if provided, must exist on the first line in a file and must begin with the pound character: "<code class="code">#</code>". White space must follow this pound character. There may be multiple Object and Content pairs, separated by white space, such as: "<code class="code"># fss-0002 fss-0000 iki-0002</code>".
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte code. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<td class="column">Do not print using color.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+q</code></td>
+ <td class="column"><code class="code">+Q</code></td>
<td class="column"><code class="code">++quiet</code></td>
<td class="column">Decrease verbosity, silencing most output.</td>
</tr>
<tr class="row">
- <td class="column"><code class="code">+n</code></td>
+ <td class="column"><code class="code">+E</code></td>
+ <td class="column"><code class="code">++error</code></td>
+ <td class="column">Decrease verbosity, using only error output.</td>
+ </tr>
+ <tr class="row">
+ <td class="column"><code class="code">+N</code></td>
<td class="column"><code class="code">++normal</code></td>
<td class="column">Set verbosity to normal.</td>
</tr>
</table>
</div>
<p class="p">
- The <code class="code">+q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte sequence. The <code class="code">+q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
+ The <code class="code">+Q/++quiet</code> parameter silences all output that is not the intent and purpose of the program. For example, the purpose of the <strong>utf8</strong> program is to print the Unicode code point or the <abbr title="Unicode Transformation Format 8-bit">UTF-8</abbr> byte sequence. The <code class="code">+Q/++quiet</code> will not suppress this output. The new line printed at the end of the program, is however, not printed. The <code class="code">+Q/++quiet</code> is ideal for using in scripting to help guarantee more consistent and controlled output.
</p>
<p class="p">
- The <code class="code">+n/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
+ The <code class="code">+N/++no_color</code> simplifies the output to avoid the special color character codes. The special color character codes tend to take up a lot of extra space and may slow down printing performance.
</p>
</div>
</section>
<p class="p">
This is a program implementing the Featureless Settings Specification FSS-000E (Payload).<br>
This performs read operations related to the FSS-000E (Payload) standard.<br>
- <p class="p">
+ </p>
<p class="p">
The FSS-000E (Payload) is focused on network communication and is intended to be used inside a network packet.<br>
This program can be used to manually read a network packet or data from the network.
<p class="p">
This is a program implementing the Featureless Settings Specification FSS-000E (Payload).<br>
This performs write operations related to the FSS-000E (Payload) standard.<br>
- <p class="p">
+ </p>
<p class="p">
The FSS-000E (Payload) is focused on network communication and is intended to be used inside a network packet.<br>
This program can be used to manually write the payload portion of a network packet.
</header>
<div class="article-content">
<p class="p">
- Similar to the FSS Read programs, this is a program implementing the Featureless Settings Specification IKI-0000 (Unrestricted).<br>
+ Similar to the <abbr title="Featureless Settings Specifications">FSS</abbr> Read programs, this is a program implementing the Featureless Settings Specification IKI-0000 (Unrestricted).<br>
This performs read operations related to the Unrestricted IKI standard (IKI-0000).<br>
- <p class="p">
+ </p>
<p class="p">
The IKI settings specification plays on how it is simpler than a Wiki syntax.<br>
The IKI could be used for anything from e-mails and text-messages to word-processors.<br>
</header>
<div class="article-content">
<p class="p">
- Similar to the FSS Write programs, this is a program implementing the Featureless Settings Specification IKI-0000 (Unrestricted).<br>
+ Similar to the <abbr title="Featureless Settings Specifications">FSS</abbr> Write programs, this is a program implementing the Featureless Settings Specification IKI-0000 (Unrestricted).<br>
This performs write operations related to the Unrestricted IKI standard (IKI-0000).<br>
- <p class="p">
+ </p>
<p class="p">
The IKI settings specification plays on how it is simpler than a Wiki syntax.<br>
The IKI could be used for anything from e-mails and text-messages to word-processors.<br>