fork download
  1. perl -i -lne 'unless(/\|$/){$line=$line.$_}else{print $line." $_";undef $line}'
Success #stdin #stdout 0.02s 5348KB
stdin
1|
2|
3|
4|
5|
6|
stdout
 1|
 2|
 3|
 4|
 5|
 6|