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
This is what you want:
$ sed '1{/"GH"/!d}' file