-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdoc.go
More file actions
15 lines (15 loc) · 690 Bytes
/
doc.go
File metadata and controls
15 lines (15 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// sortcsv allows sorting csv, and tsv, files by column name
//
// NAME:
// sortcsv sort -
//
// USAGE:
// sortcsv sort [command options] [arguments...]
//
// OPTIONS:
// --infile value, --in value, -i value Defaults to stdin (-) if not specified. (default: -)
// --outfile value, --out value, -o value Defaults to stdout (-) if not specified. (default: -)
// --sortby value, -s value Columns to sort by, repeat for sub-sort
// --tab, -t Input is tab delimited, rather than comma delimited (default: false)
// --help, -h show help (default: false)
package main