tip_1008.sh
[ESC] Exit
$cat./chapter_10/1008.md
[Best Practices]

Task Fanning

// Parallelize work for speed

Task Fanning
Fan out, then fan in
claude -p "List files" --json > tasks.json
Parallel execution pattern
cat tasks.json | jq -r '.files[]' | xargs -P 4 ...
Random
Prev/Next