i'm running a really inefficient for loop on a large text file and i'm trying to figure out how to accomplish the same thing in parallel instead of going through the text file 1 line at a time:
for i in `cat file.txt` ; do curl -sX POST "https://xxx/api/string“ -d Field=$i >/dev/null ; done