tokei 5.0.0

A utility that allows you to count code, quickly.
Documentation
# 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: 5
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, toml, yaml]
        short: o
        takes_value: true
    - sort:
        help: Will sort based on column
        long: sort
        possible_values: [files, lines, blanks, code, comments]
        short: s
        takes_value: true
    - verbose:
        help: 'Set verbose output level: 1: for unknown extensions'
        long: verbose
        short: v
        multiple: true