Command Line Options » History » Version 12
Sergey Smolov, 01/20/2020 10:59 AM
1 | 1 | Sergey Smolov | h1. Command Line Options |
---|---|---|---|
2 | |||
3 | 3 | Sergey Smolov | The _Trace Matcher_ command line looks as follows: |
4 | 1 | Sergey Smolov | <pre> |
5 | 11 | Sergey Smolov | usage: traceutils [-h] [-w [W_SIZE]] [-fds] [-sr] [-d] [-se] FILE [FILE ...] |
6 | 4 | Sergey Smolov | |
7 | positional arguments: |
||
8 | FILE Path to trace file |
||
9 | |||
10 | 6 | Sergey Smolov | optional arguments: |
11 | -h, --help show this help message and exit |
||
12 | -w [W_SIZE], --window-size [W_SIZE] |
||
13 | 1 | Sergey Smolov | Matching window size in ticks (default: 1) |
14 | 6 | Sergey Smolov | -fds, --first-dif-stop |
15 | 8 | Sergey Smolov | Stop the tool when the first difference is detected (default: disabled) |
16 | 1 | Sergey Smolov | -sr, --skip-rest Skips matching for the rest of the longest trace (default: disabled) |
17 | -d, --debug Enables printing for debug messages (default: disabled) |
||
18 | 11 | Sergey Smolov | -se, --skip-equal Skips subsequent records if they differ in time field only (default: disabled) |
19 | 1 | Sergey Smolov | </pre> |
20 | 5 | Sergey Smolov | |
21 | The detailed description of command line options is shown below: |
||
22 | |||
23 | table=. |
||
24 | 7 | Sergey Smolov | {font-style:italic; font-weight:bold; background:#ddd}. |<. Full name | Short name |<. Description | Default value| |
25 | 1 | Sergey Smolov | |<. @--help@ | @-h@ |<. Shows help message |-| |
26 | 7 | Sergey Smolov | |<. @FILE@ | @FILE@ |<. Path to the trace file|-| |
27 | 12 | Sergey Smolov | |<. @--window-size@ | @-w@ |<. The size of matching window, i.e the size of interval (in ticks) for records matching | 1 | |
28 | |<. @--first-dif-stop@ | @-fds@ |<. Stop the tool's matching process when the first proven difference has been detected | disabled | |
||
29 | |<. @--skip-rest@ | @-sr@ |<. Skips the matching\printing process for the rest of the longest trace | disabled | |
||
30 | |<. @--debug@ | @-d@ |<. Enables printing for debug messages | disabled | |
||
31 | |<. @--skip-equal@ | @-se@ |<. Skips subsequent records if they differ in time field only | disabled | |