update: makefile

This commit is contained in:
Inanc Gumus
2019-08-08 17:19:20 +03:00
parent e4dae5e0d4
commit 43d25a4180
2 changed files with 27 additions and 15 deletions

View File

@@ -41,6 +41,14 @@ Result -> report.Line
notUsing = report.Not
pl := newPipeline(pipeOpts{
from: fastTextReader(os.Stdin),
filterBy: notUsing(domainExtFilter("com", "io")),
groupBy: domainGrouper,
})
err := pl.start()
_, err := report.New().
From(report.TextReader(os.Stdin)).
To(report.TextWriter(os.Stdout)).