gpt4 book ai didi

linux - 如何递归地 curl 所有文件

转载 作者:太空宇宙 更新时间:2023-11-04 10:00:15 27 4
gpt4 key购买 nike

这是我目前使用的代码:

xargs -n 1 curl -s -o /dev/null -w "%{http_code} - %{url_effective}\n" < 'file.txt'

这适用于 curl file.txt 中的所有 URL 并获取状态代码和 curl 的 URL。但是,我需要对每个文件递归执行此操作。

我尝试了一些方法,比如这样,但都没有用:

xargs -n 1 curl -s -o /dev/null -w "%{http_code} - %{url_effective}\n" < *

多个目录中大约有 3000 个文件。有什么办法可以递归地做到这一点吗?

最佳答案

假设你的文件列表的名字有这样的规则:当前工作目录下的file.txt, file1.txt, file2.txt 包括子目录。

您可以使用 cat **/file*.txt 命令合并这些文件中的所有链接,然后将其与 xargs 合并:

cat **/file*.txt | xargs -n 1 curl -s -o /dev/null -w "%{http_code} - %{url_effective}\n"

祝你好运!

关于linux - 如何递归地 curl 所有文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56858811/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com