cbalci / multipline

Absolutely trivial cmdline tool for repeating stdin, line by line, 'n' times to stdout

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Summary:
	multipline is a trivial cmdline utility which reads stdin
	line by line and writes each line to stdout 'n' times.

Installation:
	go get github.com/cbalci/multipline

Usage:
	$>echo "turok help!" | multipline 3
	turok help!
	turok help!
	turok help!

About

Absolutely trivial cmdline tool for repeating stdin, line by line, 'n' times to stdout

License:MIT License


Languages

Language:Go 100.0%