https://github.com/shadesandgrays/code-count
CLI Line counter tool
https://github.com/shadesandgrays/code-count
cli cpp tools utility
Last synced: over 1 year ago
JSON representation
CLI Line counter tool
- Host: GitHub
- URL: https://github.com/shadesandgrays/code-count
- Owner: ShadesAndGrays
- Created: 2023-12-23T22:43:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-12T22:42:13.000Z (over 2 years ago)
- Last Synced: 2025-01-25T17:32:54.211Z (over 1 year ago)
- Topics: cli, cpp, tools, utility
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Code Counter
A simple program for checking the total number of lines of text in a given directory.
---
### Compile
Ensure you have all the depencies installed in the standard directory
Using a package manager:
##### yay
```
yay -S fmt
yay -S cmake
```
##### pacman
```
pacman -S fmt
pacman -S cmake
```
---
### Usage
- I have no idea what goes on with dot files.
- A line must have 4 characters at least
Run the cmake command in the Project ditectory
```
cmake -S . -B build
cmake --build build
./build/code-count
```
To use globally copy the code-count binary to a expose PATH directory
---
### Dependencies
- fmt
- cmake
---
#### Side Note
This is just a fancy little side project I worked on in less than a day so it's not really complicated
Thank you for looking at this project