bash 管道限制

发布于 2024-11-16 21:30:54 字数 399 浏览 2 评论 0原文

我有一个我想要下载的 url 的 txt 列表,

n=1
end=`cat done1 |wc -l`
while [ $n -lt $end ]
do
nextUrls=`sed -n "${n}p" < done1`
wget -N nH --random-wait -t 3 -a download.log -A$1 $nextUrls 
let "n++"
done

我想用管道更快地完成它,但如果我这样做,

 wget -N nH --random-wait -t 3 -a download.log -A$1 $nextUrls &

我的内存就会填满并完全阻止我的电脑。 有人知道如何限制同时创建的管道数量为 10 个吗?

i got a txt list of urls i want to download

n=1
end=`cat done1 |wc -l`
while [ $n -lt $end ]
do
nextUrls=`sed -n "${n}p" < done1`
wget -N nH --random-wait -t 3 -a download.log -A$1 $nextUrls 
let "n++"
done

i want to do it faster with pipes but if i do this

 wget -N nH --random-wait -t 3 -a download.log -A$1 $nextUrls &

my ram fills up and blocks my PC completely.
Any1 know how to limit pipes created to like 10 at the same time?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怂人 2024-11-23 21:30:54

您不是在创建管道 (|),而是在创建后台进程 (&)。每次 while 执行其主体时,您都会创建一个新的 wget 进程,并且不等待它退出,这(取决于 end 的值) code>)可能会非常快地创建很多wget进程。要么按顺序执行(删除 &),要么您可以尝试 并行执行n个进程并等待它们

顺便说一句,cat 的使用毫无用处:您可以简单地执行以下操作:

end=`wc -l done1`

You are not creating pipes (|), you are creating background processes (&). Everytime your while executes its body, you create a new wget process and don't wait for it to exit, which (depending on the value of end) may create lot of wget processes very fast. Either do sequentially (remove the &) or you can try executing n processes in parallel and wait for them.

BTW, useless use of cat: you can simply do:

end=`wc -l done1`
述情 2024-11-23 21:30:54

我有一个我想要下载的 txt 网址列表...我想更快地下载..

所以这里有一个最短的方法来做到这一点。以下命令并行运行 10 个线程,从文件 *txt_list_of_urls* 中包含的列表下载 URL:

xargs -a txt_list_of_urls -P 10 -r -n 1 wget -nv

i got a txt list of urls i want to download... i want to do it faster..

So here's a shortest way to do that. The following command downloads the URL from the list contained in file *txt_list_of_urls* parallely running 10 threads:

xargs -a txt_list_of_urls -P 10 -r -n 1 wget -nv
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文