When I use curl -s to access a text file, it will display the entire content. Is there any way to ignore the first line of content?
Test text file link:
curl -s https://raw.githubusercontent.com/Automattic/_s/master/languages/readme.txt
You can pipe and use another command to remove the first line, for example using tail
curl -s https://... | tail +2
or sed
curl -s https://... | sed '1d'