From 48e884251b50d5b4b5b8f3b68d320dbc748069c0 Mon Sep 17 00:00:00 2001 From: "phansible (aamon)" Date: Fri, 9 May 2025 15:42:36 -0400 Subject: [PATCH] Reverse order of notez display (again, correct this time) --- .shell_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.shell_functions b/.shell_functions index 2d64aa7..5a46745 100644 --- a/.shell_functions +++ b/.shell_functions @@ -48,7 +48,7 @@ notez () { 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