jakobkroeker / M2

The primary source code repository for Macaulay2
1 stars 0 forks source link

make parallel build work #35

Open jakobkroeker opened 10 years ago

jakobkroeker commented 10 years ago

make parallel build work

syntax example for gnu parallel with grep: (files A,B,C,D)

echo A B C D |  xargs -n 1 |  parallel --gnu  'if grep --quiet "CacheExampleOutput => true" {}; then echo "yes"; else echo "no"; fi;'