From c5063484222c401df95bf6d0d14520646364a175 Mon Sep 17 00:00:00 2001 From: "chawley (overlook)" Date: Fri, 9 May 2025 15:38:53 -0400 Subject: [PATCH] Reversed order of notes in 'notez' display --- .shell_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.shell_functions b/.shell_functions index edea35f..2d64aa7 100644 --- a/.shell_functions +++ b/.shell_functions @@ -8,7 +8,7 @@ noteb () { if [[ $# -eq 0 ]]; then # No arguments, display the notes file - cat "$notes_file" + tac "$notes_file" return 0 elif [[ "$1" == "-a" ]]; then # Add a note with prompting (using Bash's read -p)