Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过终端从多个网页中获取第 400 行源代码。到目前为止,我能够做到这一点的唯一方法是从页面下载整个源代码(使用 cURL),然后提取我想要的行,但是在迭代大量页面时需要很长时间。
有没有办法更有效地做到这一点,并且从一开始就得到某一行源代码?除了个别行之外,是否有类似 cURL 的 head -n 功能?
你可以做
curl -s "$url" | head -n400 | tail -n1