sh 使用xargs进行并行化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 使用xargs进行并行化相关的知识,希望对你有一定的参考价值。

# -P max-procs
#   Run up to max-procs processes at a time; the default is 1.  
#   If max-procs is 0, xargs will run as many processes as possible 
#   at a time.  Use the -n option with -P; otherwise chances are 
#   that only one exec will be done.

seq 10 | xargs -P 28 -I % echo %
#> 8
#> 4
#> 1
#> 7
#> 6
#> 3
#> 2
#> 5
#> 9
#> 10

以上是关于sh 使用xargs进行并行化的主要内容,如果未能解决你的问题,请参考以下文章

使用 if else 和 xargs 并行管道到 gnu

sh 使用xargs更改所有文件和文件夹的权限

sh 使用grep和xargs批量搜索/编辑文件的示例

sh xargs.sh

通过 JDBC 进行并行化 - Pyspark - 并行化如何使用 JDBC 工作?

sh xargs util