标题: [问题求助] [已解决]请教如何通过sed或是awk显示指定行 [打印本页]
作者: 百事可乐001 时间: 2021-11-27 13:23 标题: [已解决]请教如何通过sed或是awk显示指定行
本帖最后由 百事可乐001 于 2021-11-27 13:37 编辑
我通过curl将网页上的html显示出来(有50多行),如果将其保存为txt文件的话 我知道如何利用sed或是awk显示其中的一行,但是通过参数传递的方式如何实现呢 curl --location --request GET 'www.baidu.com' | (使用sed或是awk筛选指定行)
解决方法:
如果读取30行的话,使用head配合tail: curl --location --request GET 'www.baidu.com' | head -n 30 | tail -n -1
使用awk的话:curl --location --request GET 'www.baidu.com' | awk 'NR==30{print}'
作者: Batcher 时间: 2021-11-27 15:22
回复 1# 百事可乐001 - curl --location --request GET 'www.baidu.com' | sed -n '30p'
复制代码
- curl --location --request GET 'www.baidu.com' | sed '30!d'
复制代码
- curl --location --request GET 'www.baidu.com' | sed '30q;d'
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |