| OLD | NEW |
| 1 All the numerical options, if not specified otherwise, accept in input | 1 All the numerical options, if not specified otherwise, accept in input |
| 2 a string representing a number, which may contain one of the | 2 a string representing a number, which may contain one of the |
| 3 International System number postfixes, for example 'K', 'M', 'G'. | 3 International System number postfixes, for example 'K', 'M', 'G'. |
| 4 If 'i' is appended after the postfix, powers of 2 are used instead of | 4 If 'i' is appended after the postfix, powers of 2 are used instead of |
| 5 powers of 10. The 'B' postfix multiplies the value for 8, and can be | 5 powers of 10. The 'B' postfix multiplies the value for 8, and can be |
| 6 appended after another postfix or used alone. This allows using for | 6 appended after another postfix or used alone. This allows using for |
| 7 example 'KB', 'MiB', 'G' and 'B' as postfix. | 7 example 'KB', 'MiB', 'G' and 'B' as postfix. |
| 8 | 8 |
| 9 Options which do not take arguments are boolean options, and set the |
| 10 corresponding value to true. They can be set to false by prefixing |
| 11 with "no" the option name, for example using "-nofoo" in the |
| 12 commandline will set to false the boolean option with name "foo". |
| 13 |
| 9 @section Generic options | 14 @section Generic options |
| 10 | 15 |
| 11 These options are shared amongst the ff* tools. | 16 These options are shared amongst the ff* tools. |
| 12 | 17 |
| 13 @table @option | 18 @table @option |
| 14 | 19 |
| 15 @item -L | 20 @item -L |
| 16 Show license. | 21 Show license. |
| 17 | 22 |
| 18 @item -h, -?, -help, --help | 23 @item -h, -?, -help, --help |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 @item quiet | 75 @item quiet |
| 71 @item panic | 76 @item panic |
| 72 @item fatal | 77 @item fatal |
| 73 @item error | 78 @item error |
| 74 @item warning | 79 @item warning |
| 75 @item info | 80 @item info |
| 76 @item verbose | 81 @item verbose |
| 77 @item debug | 82 @item debug |
| 78 @end table | 83 @end table |
| 79 | 84 |
| 85 By default the program logs to stderr, if coloring is supported by the |
| 86 terminal, colors are used to mark errors and warnings. Log coloring |
| 87 can be disabled setting the environment variable @env{NO_COLOR}. |
| 88 |
| 80 @end table | 89 @end table |
| OLD | NEW |