https://github.com/escandiuzzi/notes
CLI tool made with GO to help you create notes in your macos from your terminal
https://github.com/escandiuzzi/notes
cli go golang macos macosx notes
Last synced: 2 months ago
JSON representation
CLI tool made with GO to help you create notes in your macos from your terminal
- Host: GitHub
- URL: https://github.com/escandiuzzi/notes
- Owner: Escandiuzzi
- License: other
- Created: 2024-04-17T16:20:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T16:30:00.000Z (about 2 years ago)
- Last Synced: 2024-04-17T17:36:44.266Z (about 2 years ago)
- Topics: cli, go, golang, macos, macosx, notes
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# How to install the CLI tool
## Build the project
go build -o notes main.go
## Move to the bin folder
mv mycli /usr/local/bin/
### Now you can run the CLI by running note in you terminal
#### Example
```console
foo@bar:~$ note add -f Ideas -t "Project Ideas" -c"Create a CLI tool in GO"
```
#### Add new note
```console
foo@bar:~$ note add
```
```console
foo@bar:~$ note a
```
```console
foo@bar:~$ note make
```
```console
foo@bar:~$ note n
```
#### Params
##### Folder
```console
foo@bar:~$ note add -f #Specifies the folder to be added
```
```console
foo@bar:~$ note add -folder #Specifies the folder to be added
```
##### Title
```console
foo@bar:~$ note add -t #Specifies the title of the note
```
```console
foo@bar:~$ note add -title #Specifies the title of the note
```
##### Content
```console
foo@bar:~$ note add -c #Specifies the content of the note
```
```console
foo@bar:~$ note add -content #Specifies the content of the note
```