From 30d9a138fd62813b6ea5c7ef612be2956d9ed166 Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 23 Jun 2025 20:56:01 +0200 Subject: [PATCH] feat(notes): quiet output to create command (install) --- notes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes.sh b/notes.sh index c650df0..9bb744f 100755 --- a/notes.sh +++ b/notes.sh @@ -39,7 +39,7 @@ function createNote() { # IF Not Exists: create file & echo date if ! test -f "$full_path"; then - install -Dv /dev/null "$full_path" + install -Dv /dev/null "$full_path" >/dev/null # TODO: update to correct heading from old entries heading="# $title" echo $heading > "$full_path"