https://github.com/sayanarijit/note.sh
[ABANDONED PROJECT] Probably the simplest and lightest note taking tool on your terminal.
https://github.com/sayanarijit/note.sh
bash bash-script note-taking notes terminal
Last synced: 7 months ago
JSON representation
[ABANDONED PROJECT] Probably the simplest and lightest note taking tool on your terminal.
- Host: GitHub
- URL: https://github.com/sayanarijit/note.sh
- Owner: sayanarijit
- Archived: true
- Created: 2016-10-09T17:13:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-12T08:12:20.000Z (over 6 years ago)
- Last Synced: 2025-02-09T05:30:03.882Z (8 months ago)
- Topics: bash, bash-script, note-taking, notes, terminal
- Language: Shell
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
note.sh
=======
Probably the simplest and lightest note taking tool on your terminal.[](https://asciinema.org/a/245695)
Usage
-----
Download [note.sh](https://github.com/sayanarijit/note.sh/releases)```bash
wget https://github.com/sayanarijit/note.sh/releases/download/${version}/note.sh
```Give execute permission
```bash
chmod +x note.sh
```Create your 1st note (Tip: default editor is vi; to change it, edit $EDITOR variable in note.sh)
```bash
./note.sh my first note
```Write "I love cheese" and close editor. Note is created. Now lets find the note
```bash
./note.sh cheese
```or
```bash
./note.sh first note
```Customization
-------------
Change default editor or notes directory using followig environment variables.```bash
export EDITOR="vim" # Or you favourite text editor
export NOTESDIR="$HOME/mynotes" # Or any location you have write access to
```