在bash中并行执行curl请求

前端之家收集整理的这篇文章主要介绍了在bash中并行执行curl请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从bash脚本并行执行5个curl请求的最佳方法是什么?出于性能原因,我不能连续运行它们.
使用’&’在命令后台进程后,“等待”等待它们完成.如果需要创建子 shell,请在命令周围使用'()’.
#!/bin/bash

curl -s -o foo http://example.com/file1 && echo "done1" &
curl -s -o bar http://example.com/file2 && echo "done2" & 
curl -s -o baz http://example.com/file3 && echo "done3" &

wait
原文链接:https://www.f2er.com/bash/385885.html

猜你在找的Bash相关文章