KISS Terminal note taker.
This script consists of only 4 components:
- note.sh (The executable file)
- todo.md (A TODO file)
- quicknote.md (For the quick notes)
- commands.md (Your list of commands/cheat sheets)
Create the default directory and files:
mkdir -p ~/documents/notes/
touch ~/documents/notes/todo.md
touch ~/documents/notes/quicknote.md
touch ~/documents/notes/commands.mdCopy executable in your 'bin' folder ($HOME/bin is preferable):
cp notes.sh ~/bin/note
chmod +x ~/bin/notenote -t | todonote -q | quicknotenote -c | commandsIN KISS WE TRUST