tokei 2.1.0

Count code, quickly.
# Copyright (c) 2015 Aaron Power
# Use of this source code is governed by the APACHE2.0/MIT license that can be
# found in the LICENCE-{APACHE/MIT} file.
about: Count Code, Quickly.
author: Aaron P. <theaaronepower@gmail.com>
bin_name: Tokei
name: Tokei
version: 2.1.0
args:
    - exclude:
        help: Ignore all files & directories containing the word
        long: exclude
        short: e
        takes_value: true
    - files:
        help: Will print out statistics on individual files.
        long: files
        short: f
        takes_value: false
    - file_input:
        help: "Gives statistics from a previous tokei run. Can be given a file path, or \"stdin\" to read from stdin" 
        long: input
        short: i
        takes_value: true
    - input:
        conflicts_with:
            - languages
        help: The input file(s)/directory(ies)
        index: 1
        multiple: true
        required: true
    - languages:
        conflicts_with:
            - input
        help: Prints out supported languages and their extensions
        long: languages
        short: l
    - output:
        help: Outputs Tokei in a specific format.
        long: output
        possible_values: [cbor, json, yaml]
        short: o
        takes_value: true
    - sort:
        help: Will sort based on column
        long: sort
        possible_values: [files, total, blanks, code, commments]
        short: s
        takes_value: true