9 lines
136 B
Plaintext
9 lines
136 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
block() {
|
||
|
./jqPoke "$1" > "./pokeData/$1"
|
||
|
}
|
||
|
|
||
|
export -f block
|
||
|
pokemon-colorscripts -l | sort | parallel --bar -j 200 block
|