2015-09-21 22:51:42 +00:00
|
|
|
# Copyright (c) 2015 Aaron Power
|
2016-05-17 10:15:51 +00:00
|
|
|
# Use of this source code is governed by the APACHE2.0/MIT license that can be
|
|
|
|
# found in the LICENCE-{APACHE/MIT} file.
|
2015-09-29 16:59:17 +00:00
|
|
|
bin_name: Tokei
|
2015-09-20 09:40:07 +00:00
|
|
|
name: Tokei
|
2016-05-13 21:16:05 +00:00
|
|
|
version: 2.0.0
|
2015-09-20 09:40:07 +00:00
|
|
|
author: Aaron P. <theaaronepower@gmail.com>
|
2016-05-17 10:15:51 +00:00
|
|
|
about: Count Code, Quickly.
|
2015-09-20 09:40:07 +00:00
|
|
|
args:
|
2016-05-17 10:15:51 +00:00
|
|
|
- exclude:
|
|
|
|
short: e
|
|
|
|
long: exclude
|
|
|
|
help: Ignore all files & directories containing the word
|
|
|
|
takes_value: true
|
|
|
|
- sort:
|
|
|
|
short: s
|
|
|
|
long: sort
|
|
|
|
takes_value: true
|
|
|
|
possible_values: [files, total, blanks, code, commments]
|
|
|
|
help: Will sort based on column
|
|
|
|
- input:
|
|
|
|
index: 1
|
|
|
|
multiple: true
|
|
|
|
required: true
|
|
|
|
help: The input file(s)/directory(ies)
|
|
|
|
conflicts_with:
|
|
|
|
- languages
|
|
|
|
- files:
|
|
|
|
short: f
|
|
|
|
long: files
|
|
|
|
takes_value: false
|
|
|
|
help: Will print out statistics on individual files.
|
|
|
|
- languages:
|
|
|
|
short: l
|
|
|
|
long: languages
|
|
|
|
conflicts_with:
|
|
|
|
- input
|
|
|
|
help: Prints out supported languages and their extensions
|
|
|
|
- file_input:
|
|
|
|
short: i
|
|
|
|
long: input
|
|
|
|
takes_value: true
|
2016-05-20 11:44:24 +00:00
|
|
|
help: "Gives statistics from a previous tokei run."
|
2016-05-17 10:15:51 +00:00
|
|
|
- output:
|
|
|
|
short: o
|
|
|
|
long: output
|
|
|
|
takes_value: true
|
|
|
|
help: Outputs Tokei in a specific format.
|
2016-05-20 11:44:24 +00:00
|
|
|
possible_values: [cbor, json, yaml]
|