fork(3) download
  1. #!/bin/bash
  2. s="Line
  3. Title:
  4. Some text
  5. More lines
  6. here"
  7. sed '/^Title: $/{N;s/.*\n\t*\(.*\)/Title:\1/}' <<< "$s"
Success #stdin #stdout 0s 4300KB
stdin
Standard input is empty
stdout
Line
Title:Some text
More lines
here