Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 264 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 264 Bytes

Stream Split

split but streams each chunk to the provided command.

stream-split -lines 500 data.txt -- wc -l

This will split up data.txt into 500 line chunks and execute wc -l for each chunk.