Help for this page

Select Code to Download


  1. or download this
        perl -00 -pe 's/ $/\012/ if s/\n+/ /g and eof' file
    
  2. or download this
        perl -00 -pe '(eof) ? s/\n\n/\n/ : s/\n+/ /g ' file
    
        perl -00 -pe 's/\n+/(eof) ? "\n" : " "/eg '    file