Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | 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'