Simple Note System v2.0a2

Changes:
Split script into several different files for easier editting
Added build.sh to compile Simple Note System from tree
Changed config file to config folder; $HOME/.sns now contains configuration and notes

Testing:
Script runs and produces help screen; no further testing done.
This commit is contained in:
Jon-William Lewis
2015-03-18 12:52:00 -05:00
parent 1864543bf5
commit 45717e33b5
13 changed files with 538 additions and 175 deletions

20
functions/help.sns.sh Normal file
View File

@@ -0,0 +1,20 @@
function help {
echo ""
echo "usage: sns [-ce] NAME NOTEBOOK SECTION"
echo " sns [-d ] NAME NOTEBOOK SECTION"
echo " sns [-l ] NOTEBOOK"
echo " sns [-w ]"
echo ""
echo " -c | --create : Create note"
echo " -d | --delete : Delete note"
echo " -e | --edit : Open note for editing"
echo " -p | --print : Print note to console"
echo " -l | --list : List all notes in NOTEBOOK"
echo " -w | --wconf : Write default configuration to ~/.sns (useful for Encryption)"
echo ""
}
#==============================================================================
# End Section: Helper Functions
#==============================================================================