https://github.com/maksimka101/cli_notes
Cli notes written in Rust
https://github.com/maksimka101/cli_notes
Last synced: 3 months ago
JSON representation
Cli notes written in Rust
- Host: GitHub
- URL: https://github.com/maksimka101/cli_notes
- Owner: Maksimka101
- Created: 2022-10-29T18:42:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-29T21:53:58.000Z (over 2 years ago)
- Last Synced: 2025-02-02T19:36:41.733Z (4 months ago)
- Language: Rust
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cli notes written in Rust
Usage example:
```
» cli_notes create
Enter the note title then press enter and enter the message
Note showcase
This is an example of the note creation process
Note successfully created» cli_notes list
Id: 1757673530
Created at: 2022-10-29 22:36:22.573482 +04:00
Title: Note showcase
Message: This is an example of the note creation process
---
Id: 767085535
Created at: 2022-10-29 17:57:01.226513 +04:00
Title: Title 3
Message: Message number 3
---
» cli_notes remove 767085535
The note successfully removed» cli_notes read 1757673530
Id: 1757673530
Created at: 2022-10-29 22:36:22.573482 +04:00
Title: Note showcase
Message: This is an example of the note creation process» ./cli_notes -h
cli_notes 0.1.0USAGE:
cli_notesFLAGS:
-h, --help Prints help information
-V, --version Prints version informationSUBCOMMANDS:
create Create a new note
help Prints this message or the help of the given subcommand(s)
list List all notes
read Read the note by the given id
remove Remove the note by the given id
```