Based on the i-did project by VonKavalier
Little script to keep track of what you do everyday.
The idea is to keep track of things you've done, not to do. It's based on the "Done List" principle.
It features a readable list with tasks grouped by days.
Works on Linux (Mac and Windows not tested)
$ go get github.com/BtKent/idid
$ go get -u github.com/BtKent/idid
# Show help
$ idid -h
There are 4 flags you can use:
Flag | Detail | Require or not |
---|---|---|
-path |
Path for file (default $HOME/idid) | Optional |
-msg |
Message to write | Require |
-show |
Display file | Optional |
-version |
Display version number | Optional |
# Write a message to default file
$ idid -msg="<Your message>"
# Write a message to custom file
$ idid -path=<path/to/your/file> -msg="<Your message>"
# Show default file
$ idid -show
# Show custom file
$ idid -show -path=<path/to/your/file>