Updated documentation

This commit is contained in:
Eduard Urbach 2025-06-02 17:11:48 +02:00
parent 3e15e9f85a
commit 81cf657a9b
Signed by: eduard
GPG key ID: 49226B848C78F6C8

View file

@ -12,18 +12,30 @@ cargo install fnl
Show status:
```shell
fnl file.txt
```
```shell
find . -type f -name "*.txt" | xargs fnl
```
Add final newlines:
```shell
fnl --add file.txt
```
```shell
find . -type f -name "*.txt" | xargs fnl --add
```
Remove final newlines:
```shell
fnl --remove file.txt
```
```shell
find . -type f -name "*.txt" | xargs fnl --remove
```