fork(10) download
  1. #!/bin/bash
  2. s="a
  3. b
  4. c
  5. d"
  6. echo "'$(awk 'BEGIN{ORS="\n\n\n"};1' <<< "$s")'"
  7. echo "'$(sed 'G;G;G' <<< "$s")'"
  8.  
Success #stdin #stdout 0s 4152KB
stdin
Standard input is empty
stdout
'a


b


c


d'
'a



b



c



d'