From 3c304c5452799f69102e23879a1a2daa5ae7a297 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sun, 28 Jun 2026 21:06:43 +0200 Subject: [PATCH] feat(notes): change file date format --- notes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes.sh b/notes.sh index 8550cb7..6377490 100755 --- a/notes.sh +++ b/notes.sh @@ -19,7 +19,7 @@ function createNote() { exit 1; fi; - file_date="$(date +'%Y.%m.%d')" + file_date="$(date +'%m.%d.%Y')" file_name="$title.md" full_path="${notes_dir}/${file_date}-${file_name}"