Help for this page

Select Code to Download


  1. or download this
    # This program takes a list of foo data files
    # for each file it:
    #    reads the file    
    #    sanitizes the data fields
    #    converts the file to csv (name is based on foo file name)
    
  2. or download this
    # This program takes a list of foo data files
    my @foo_files = @ARGV;
    ...
    
        return;
    }
    
  3. or download this
    
    sub convert_foo_name_to_csv_name {
    ...
        return $name;
    }