Function delete implemented. Improved listing.
[bash-notes.git] / README.md
CommitLineData
0ade724f 1# bash notes
2
3### a simple note taking app written in bash
4
5I'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.
6
7It's a simple (enough) bash script, the only dependance (yet) is [jq](https://stedolan.github.io/jq/).
8
9here's all the functions that I'm planning to implement:
10
11```bash
12-h | --help : This help text
13-p | --plain : Output is in plain text (without this option the output is colored)
14-l | --list : List existing notes
15-a | --add <title> : Add new note
16-m | --modify <note> : Modify note
b648c006 17-d | --delete <note> : Delete note
0ade724f 18-v | --version : Print version
19--userconf : Export User config file
20```
21
22not all functionalities are present at the moment