Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 248 Bytes

parallel.md

File metadata and controls

10 lines (7 loc) · 248 Bytes

parallel

Execute function over Bash array

parallel <function> ::: <array>

<function> is a pre-defined shell function (be sure to export -f <function> beforehand), and <array> is a fully dereferenced (i.e. ${...[@]} array.