https://github.com/math2001/act
A little go equivalent of t (by Steve Losh)
https://github.com/math2001/act
go
Last synced: 11 days ago
JSON representation
A little go equivalent of t (by Steve Losh)
- Host: GitHub
- URL: https://github.com/math2001/act
- Owner: math2001
- Created: 2017-09-09T01:01:44.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-09T02:00:17.000Z (almost 9 years ago)
- Last Synced: 2025-02-24T13:15:25.634Z (over 1 year ago)
- Topics: go
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `act`
A little script that mananges todos. It is hugely inspired by [Steve Losh's
t](http://stevelosh.com/projects/t/).
## Installation
Just download the `act` file from
[here](https://github.com/math2001/act/releases/latest), alias it in your
`.bashrc` to whatever you want (see the example in the help message).
Just download
$ act
=====
A very simple CLI todo manager by math2001
Hugely inspired by Steve Losh's t (Python)
Usage
-----
-e int
Action id you want to edit (default -1)
-f int
Action id you have finished (default -1)
-file string
A path the file to store tasks (default "./acts")
Example
-------
[~] $ alias act="path/to/act -file=~/acts"
[~] $ act Fix #12
[~] $ act Improve help message
[~] $ act
1 Fix #12
2 Improve help message
[~] $ act -e=2 [CLI] Improve help message
[~] $ act
1 Fix #12
2 [CLI] Improve help message
[~] $ act -f=2
[~] $ act
1 Fix #12