Help for this page

Select Code to Download


  1. or download this
    open(IN, '<c:\doclist.chr') or die "Couldn't open file, $!";
    open(OUT, '>c:\doclist.txt') or die "Couldn't open file, $!";
    
  2. or download this
    print OUT join '|', split /,/ while <IN>;