Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isakruas/notes
A command-line tool for efficiently managing personal notes, allowing you to add, list, edit, and delete notes with simple commands.
https://github.com/isakruas/notes
command-line-tool makefile-automation note-management note-taking personal-notes productivity terminal-commands
Last synced: 7 days ago
JSON representation
A command-line tool for efficiently managing personal notes, allowing you to add, list, edit, and delete notes with simple commands.
- Host: GitHub
- URL: https://github.com/isakruas/notes
- Owner: isakruas
- Created: 2024-10-29T00:01:50.000Z (23 days ago)
- Default Branch: main
- Last Pushed: 2024-10-29T02:16:24.000Z (23 days ago)
- Last Synced: 2024-10-29T03:21:11.963Z (23 days ago)
- Topics: command-line-tool, makefile-automation, note-management, note-taking, personal-notes, productivity, terminal-commands
- Language: Makefile
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Useful Commands for Personal Notes
## Adding a Note
To add a new note, you have two options:
- Run the command and interactively provide the title:
```bash
make add
```
- Provide the title directly in the command:
```bash
make add TITLE="Your Note Title"
```## Listing Notes
To list all your notes grouped by prefix, use:
- Simply list all notes:
```bash
make list
```
- List notes using a keyword search:
```bash
make list SEARCH="keyword"
```## Editing a Note
To edit an existing note, use:
```bash
make edit
```
You will be prompted to enter the note's name, and it will open in your default text editor.## Cleaning Up
To remove all notes, use:
```bash
make clean
```
You will be asked for confirmation before proceeding with the deletion.## Formatting Notes
To ensure all lines in your notes are no longer than 80 characters, use the `format` command. This helps improve the readability of your notes by breaking down long lines:
```bash
make format
```
This command reformats each note file by wrapping lines at word boundaries, ensuring a maximum line length of 80 characters.## Display Help Information
For more information on available commands and usage, use:
```bash
make help
```