https://github.com/shindakun/gogid
gogid - because everything built with go must contain the word go.
https://github.com/shindakun/gogid
go golang gtd
Last synced: 9 months ago
JSON representation
gogid - because everything built with go must contain the word go.
- Host: GitHub
- URL: https://github.com/shindakun/gogid
- Owner: shindakun
- Created: 2017-12-27T20:11:15.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-08T21:16:46.000Z (about 8 years ago)
- Last Synced: 2025-02-15T12:50:23.081Z (11 months ago)
- Topics: go, golang, gtd
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gogid - Go, Get it Done!
gogid is a command line task tool loosely modeled as a GTD type system.
gogid was created as a learning project.
---
# Installation
Pre-built binaries are not currently provided. Use of `go get` is recommended.
```bash
go get github.com/shindakun/gogid/cmd/gogid
```
---
# Usage
Run with `go run ./cmd/gogid/gogid.go` or build with
`go build ./cmd/gogid/gogid.go`
```bash
$ ./gogid -h
Usage of E:\Projects\Go\src\gogid\gogid.exe:
-complete int
Mark a single task as completed. (default -1)
-id int
ID of task in question, used to add notes (default -1)
-new string
Add a new task, enclose in quotes.
-newnote string
Add a new note to a task, enclose in quotes.
-notcomplete int
Mark a single task as not completed. (default -1)
-print int
Print a single task. (default -1)
-printtasks
Print entire task list to console.
```