28 lines
528 B
Markdown
28 lines
528 B
Markdown
# daily.sh
|
|
|
|
This is a simple bash script for quickly taking notes from the terminal.
|
|
|
|
## Requirements
|
|
- Bash shell
|
|
- vim
|
|
|
|
## Installation
|
|
|
|
1. Copy `daily.sh` to a directory that is in your `$PATH`.
|
|
````
|
|
$ cp daily.sh "$HOME/bin"
|
|
````
|
|
|
|
2. Change the permissions on the script, so that it is executable.
|
|
````
|
|
$ chmod +x "$HOME/bin/daily.sh"
|
|
````
|
|
|
|
## Usage
|
|
|
|
Just type `daily.sh`, and it will open up today's note for editing.
|
|
|
|
Notes are stored in `$HOME/.local/daily`.
|
|
|
|
A new note file is created for each day.
|