Progress. I can now create and edit notes reliably.

This commit is contained in:
Jon-William Lewis
2016-01-25 19:33:48 -06:00
parent 6a21731082
commit 8fc731aaa0
8 changed files with 55 additions and 43 deletions

View File

@@ -25,7 +25,7 @@ SESSION_ID="$RANDOM"
NOTE_DIR="$BASE_DIR"/"$NOTEBOOK"/"$SECTION"/
NOTE="$NOTE_DIR""$NAME"."$EXT"
if [ "$ENCRYPTION" == "TRUE" ]; then NOTE="$NOTE".enc; fi
if [ "$ENCRYPTION" == "TRUE" ]; then NOTE="$NOTE".gpg; fi
if [ "$PRINT" == "TRUE" ]; then print; exit 0; fi
if [ "$DELETE" == "TRUE" ]; then delete; exit 0; fi
if [ "$CREATE" == "TRUE" ]; then create; fi