fork(1) download
  1. $_ = " Hallo World\n This is demo \n";
  2. s/\S\K +/ /g;
Success #stdin #stdout 0s 4552KB
stdin
Standard input is empty
stdout
     Hallo   World
  This     is   demo    
     Hallo World
  This is demo