Help for this page

Select Code to Download


  1. or download this
    #!usr/bin/env perl
    open (test, "@ARGV");
    ...
    }
    close (test);
    
  2. or download this
    open(test, "<$ARGV[0]"); # what happens when more args?
    
  3. or download this
        s/(th)/TH/gi;
    
  4. or download this
        s/th/TH/go;
    
  5. or download this
        tr/th/TH/;