Can I use sed to check the first line of some command\'s output (to stdout) and delete this very first line if it matches a certain pattern?
sed
Say, the co
sed '1{//{/GH/!d}}' input
The error in your expression can be fixed like this:
sed '1{//d}' input