Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    $cmd="perl -pi -e s\'\/^\\s+\/\/'g $file";
    print "$cmd\n";
    system($cmd);
    
  2. or download this
    open(DATA, "$file");
    while(<DATA>){
    ...
    
    }