Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • 1
    splitting part of your question, you can refer to this question split file into N pieces with same name but different target directories. Commented Nov 16, 2017 at 4:58
  • 1
    Have a look at man split and have a try with option -l. If you can't succeed, edit the question to show what you tried and maybe give an easy example. Commented Nov 16, 2017 at 7:01
  • Try parallel -a myfile --pipepart --block -1 wc or parallel -a myfile --pipepart --block -1 --cat wc or parallel -a myfile --pipepart --block -1 --fifo wc. Commented Nov 17, 2017 at 0:08