Next Hold Space 20

Heading translation in sed

        1 { h; d }
  • 1 is the pattern: the commands apply only to line 1 of the input

  • h stores line 1 into the hold space

  • d discards the pattern space and immediately proceeds to the next line


Next Next