From 332579ca120fa548dbe58079f1b9ec0d7aeee24e Mon Sep 17 00:00:00 2001 From: d4t4s3c Date: Wed, 26 Jan 2022 22:34:01 +0100 Subject: [PATCH] Add aspell Co-authored-by: Andrea Cardaci --- aspell.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 aspell.md diff --git a/aspell.md b/aspell.md new file mode 100644 index 0000000..203047e --- /dev/null +++ b/aspell.md @@ -0,0 +1,16 @@ +--- +description: The textual file is displayed in an interactive TUI showing only the parts that contain mispelled words. +functions: + file-read: + - code: | + LFILE=file_to_read + aspell -c "$LFILE" + suid: + - code: | + LFILE=file_to_read + ./aspell -c "$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo aspell -c "$LFILE" +---