fork(22) download
  1. awk 'NR % 2 == 1 { o=$0 ; next } { print o "<sep>" $0 }'
Success #stdin #stdout 0.03s 5308KB
stdin
line1
line2
line3
line4
stdout
line1<sep>line2
line3<sep>line4