当我用来curl -s
访问文本文件时,它将显示整个内容。有什么办法可以忽略第一行内容吗?
测试文本文件链接:
curl -s https://raw.githubusercontent.com/Automattic/_s/master/languages/readme.txt
答案1
您可以通过管道并使用另一个命令来删除第一行,例如使用tail
curl -s https://... | tail +2
或者sed
curl -s https://... | sed '1d'