-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.yml
28 lines (28 loc) · 884 Bytes
/
cli.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: dedup
version: "0.2"
author: Chris McDonald <[email protected]>
about: Deduplicates entries in file or stream
args:
- INPUT:
help: Specifies the input file to read from. Omit or supply '-' to read from stdin.
index: 1
- OUTPUT:
short: o
long: output
takes_value: true
value_name: OUTPUT
use_delimiter: false
- MMAP:
help: Enables use of memory mapped files. This is enabled by default.
long: mmap
conflicts_with: NO_MMAP
takes_value: false
- NO_MMAP:
help: Prohibits usage of memory mapped files. This will slow down the deduplication process significantly!
long: no-mmap
takes_value: false
- DELIMITER:
help: Specifies the byte pattern to separate entries by. Default is system-specified newline.
short: z
long: delimiter
takes_value: true