Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

22.26. parallel - build and execute shell command lines from standard input in parallel

并行执行shell命令

			$ sudo apt-get install parallel
		

例 22.6. parallel - build and execute shell command lines from standard input in parallel

				$ cat *.csv | parallel --pipe grep '13113'
			

设置块大小

				$ cat *.csv | parallel --block 10M --pipe grep '131136688'