Initial commit

This commit is contained in:
Eduard Urbach 2025-06-02 16:54:33 +02:00
commit 841f5ef294
Signed by: eduard
GPG key ID: 49226B848C78F6C8
5 changed files with 116 additions and 0 deletions

37
readme.md Normal file
View file

@ -0,0 +1,37 @@
# fnl
Add or remove final newlines.
## Installation
```shell
cargo install fnl
```
## Usage
Show status:
```shell
find . -type f -name "*.txt" | xargs fnl
```
Add final newlines:
```shell
find . -type f -name "*.txt" | xargs fnl --add
```
Remove final newlines:
```shell
find . -type f -name "*.txt" | xargs fnl --remove
```
## License
Please see the [license documentation](https://urbach.dev/license).
## Copyright
© 2025 Eduard Urbach