feat(notes): quiet output to create command (install)

This commit is contained in:
Ayo Ayco 2025-06-23 20:56:01 +02:00
parent f5f4414254
commit 30d9a138fd

View file

@ -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"