Linux – Shell脚本并行运行curl命令

前端之家收集整理的这篇文章主要介绍了Linux – Shell脚本并行运行curl命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想创建linux shell脚本来并行运行CURL命令

例如:我有三个命令

>卷曲-s http://localhost/process.php?id=1
>卷曲-s http://localhost/process.php?id=2
>卷曲-s http://localhost/process.php?id=3

我想同时调用上面三个命令.

任何帮助表示赞赏.

最佳答案
我认为一个bash脚本如:

#!/bin/bash

curl -s http://localhost/process.PHP?id=1 &
curl -s http://localhost/process.PHP?id=2 &
curl -s http://localhost/process.PHP?id=3 &

但是,这将作为后台进程启动所有任务.
不知道同时启动过程有多重要.

原文链接:https://www.f2er.com/linux/440206.html

猜你在找的Linux相关文章