summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordanix <danix@danix.xyz>2023-03-24 17:51:15 +0100
committerdanix <danix@danix.xyz>2023-03-24 17:51:15 +0100
commit0ade724f20b8cfa423dfa26168f8d72a96554a46 (patch)
tree48484cf8ea9e3d6949b969247eb99b5d42c30fcc
parentc018122c134d4a9dafe623425f768e15da94ca57 (diff)
downloadbash-notes-0ade724f20b8cfa423dfa26168f8d72a96554a46.tar.gz
bash-notes-0ade724f20b8cfa423dfa26168f8d72a96554a46.zip
adding readme to project
-rw-r--r--README.md23
-rw-r--r--notes.sh2
2 files changed, 24 insertions, 1 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b3517dd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,23 @@
+# bash notes
+
+### a simple note taking app written in bash
+
+I've found myself in need of a simple way to take notes, and since the other solutions available didn't meet my needs, I've decided to write my own app.
+
+It's a simple (enough) bash script, the only dependance (yet) is [jq](https://stedolan.github.io/jq/).
+
+here's all the functions that I'm planning to implement:
+
+```bash
+-h | --help : This help text
+-p | --plain : Output is in plain text (without this option the output is colored)
+-l | --list : List existing notes
+-a | --add <title> : Add new note
+-m | --modify <note> : Modify note
+-d | --date <note> : Modify date for note
+-r | --remove <note> : Remove note
+-v | --version : Print version
+--userconf : Export User config file
+```
+
+not all functionalities are present at the moment \ No newline at end of file
diff --git a/notes.sh b/notes.sh
index fa54bae..91a3867 100644
--- a/notes.sh
+++ b/notes.sh
@@ -81,7 +81,7 @@ __NOWCONF__
echo " -l | --list : List existing notes"
echo " -a | --add <title> : Add new note"
echo " -m | --modify <note> : Modify note"
- echo " -d | -date <note> : Modify date for note"
+ echo " -d | --date <note> : Modify date for note"
echo " -r | --remove <note> : Remove note"
echo " -v | --version : Print version"
echo " --userconf : Export User config file"