From 81cf657a9b220e697af0e11160f17ae7f1641693 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Mon, 2 Jun 2025 17:11:48 +0200 Subject: [PATCH] Updated documentation --- docs/readme.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/readme.md b/docs/readme.md index bbb3f87..d330a9f 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -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 ```