lines-cli 0.3.0

Count lines of code, fast.
# lines

Counts lines of code, fast.

## Installation

From within this repository, run the command:

```sh
cargo install -f --locked --path .
```

## Usage

```
$ lines -h
lines 0.2.0
Count lines of code

USAGE:
    lines [OPTIONS] [PATH]

ARGS:
    <PATH>    Directory or file to scan [default: .]

OPTIONS:
    -h, --help               Print help information
    -o, --output <FORMAT>    Output format [default: table]
    -t, --timing             Show timing information
    -V, --version            Print version information
```

Using `lines` in this repo outputs:

```
 Language | Files | Lines 
----------+-------+-------
 Rust     |     4 |   611 
 Markdown |     1 |    49 
 TOML     |     1 |    26 
---------- ------- -------
 Total    |     6 |   686 
```

## License

lines is released with the MIT license.
Please see the [LICENSE](./LICENSE) file for more details.