fork(3) download
  1. #!/bin/bash
  2. s='first line
  3. second line DELETE ME
  4. - third line
  5. - fourth line
  6. fifth line
  7. sixth line DELETE ME
  8. seventh line
  9. - eighth line'
  10. sed '/DELETE ME/{:a;N;s/\n[[:blank:]]*-.*//;ta;!P;D}' <<< "$s"
Success #stdin #stdout 0s 4424KB
stdin
Standard input is empty
stdout
first line
fifth line
seventh line
  - eighth line