From: danix Date: Fri, 24 Mar 2023 15:26:31 +0000 (+0100) Subject: we can now edit a note and list all notes X-Git-Tag: v0.2~13 X-Git-Url: https://git.danix.xyz/?p=bash-notes.git;a=commitdiff_plain;h=44abbfe7d30b1a3460500aef77bc6f4b7b3b95fa we can now edit a note and list all notes --- diff --git a/notes.sh b/notes.sh index 3fc89e3..edec94d 100644 --- a/notes.sh +++ b/notes.sh @@ -97,11 +97,27 @@ function addnote() { } function listnotes() { - echo "list all notes" + echo "listing all notes" + echo "" + echo "[ID] [TITLE]" + for i in ${NOTESDIR}/*; do + TITLE=$($JQ -r --arg z $(basename $i) '.notes[] | select(.file == $z) | .title' $DB) + ID=$($JQ -r --arg z $(basename $i) '.notes[] | select(.file == $z) | .id' $DB) + + echo "[${ID}] ${TITLE}" + done } function editnote() { - echo "edit note \"${1}\"" + TITLE=$($JQ --arg i $1 '.notes[] | select(.id == $i) | .title' $DB) + FILE=$($JQ -r --arg i $1 '.notes[] | select(.id == $i) | .file' $DB) + if [ "$TITLE" ]; then + echo "editing note $TITLE" + $(${TERMINAL} --class notes --title notes -e ${EDITOR} ${NOTESDIR}/${FILE}) + else + echo "note not found" + exit 1 + fi } function datenote() {