fork download
  1. /^@/ { last_line=$0; line_to_print=true }
  2. /^[^@]/ { if ( line_to_print == true ) print last_line; print $0; line_to_print=false }
  3. END { if ( line_to_print == true ) print last_line }
Success #stdin #stdout 0.01s 4276KB
stdin
abc

@abc

@def

333

@asd

@poi

@789
stdout
abc
@def
333
@789