a light weight cli tool note system that can be read notes in the terminal on the fly
git clone https://github.com/michavardy/anyNote
mkdir .venv
python -m venv ./.venv
. ./.venv/Scripts/activate
python -m pip install requirments.txt
# append the following to ~/.bashrc
alias anynote=<path_to_anynote>/anyNote/cli.sh $PWD
- go to projects file and type anynote init
- go to .anynote/notes.md and type in notes
- type in anynote -r to access notes in command line
example
# Keyword
``
code line 1 # comment
code line 2 # comment
code line 3 # comment
``
## sub-Keyword
``
code line 1 # comment
code line 2 # comment
code line 3 # comment
``
$ anynote -r keyword
code line 1 # comment code line 2 # comment code line 3 # comment