in reply to Re: opening perl script by clicking on it
in thread opening perl script by clicking on it
#!/bin/perl -w use strict; use warnings; my @array_A; # array initialization as array_X where X corresponds to +column of csv my @array_B; use Text::CSV; print " Hello please enter the name of your csv file "; print "\n"; my $filename = <>; chomp $filename; @array= data ($filename,0); # funcn call ...
the problem is at this line use Text::CSV;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: opening perl script by clicking on it
by davido (Cardinal) on Jul 01, 2013 at 06:34 UTC | |
by Anonymous Monk on Jul 01, 2013 at 06:42 UTC | |
by davido (Cardinal) on Jul 01, 2013 at 06:47 UTC | |
by Anonymous Monk on Jul 01, 2013 at 07:18 UTC |