CLI utility to find todos, fixmes etc. in your code base. Those tags will referred to as comment tags.
If you have Go installed, in the downloaded repository run go build
to produce a executable.
Use the getme
utility on a file or a directory like so.
> cat main.go
package main
import "fmt"
func main() {
// TODO write hello world
fmt.Println("")
}
> getme main.go
./main.go:6:2: TODO -- write hello world
Without argument, getme
scans the current directory recursively.
The output is parser friendly and can be used by editors plugins. File name (relative by default), line and column are separated by a colon followed by the and the tags message which are separated by a double dash.