X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=parallel-parse-pgn.sh;fp=parallel-parse-pgn.sh;h=79fa44069c78c10874d1d854687773da646e8044;hb=2d13258e04f6800f1a5d29186a460994e442b4ff;hp=0000000000000000000000000000000000000000;hpb=7ac37d77ecacc4f33d8bc76d80e3fb6c7632fb92;p=remoteglot-book diff --git a/parallel-parse-pgn.sh b/parallel-parse-pgn.sh new file mode 100755 index 0000000..79fa440 --- /dev/null +++ b/parallel-parse-pgn.sh @@ -0,0 +1,6 @@ +#! /bin/sh +FILE=$1 +for X in $( seq 0 39 ); do + ( ./parse-pgn.pl $FILE $X 40 >> part-$X.bin ) & +done +wait