
Laurent_R
Veteran
/ Moderator
Jul 27, 2017, 2:38 AM
Post #2 of 2
(1445 views)
|
Re: [Efficent] Run prefix for script
[In reply to]
|
Can't Post
|
|
I have no idea what this is all about, but looking at the code, I can see that you have this line:
my $prefix = $ARGV[0] or die "Please specify a prefix for gps and xml files"; This means that you need to supply a "prefix" as a command line argument when you launch the program. A "prefix" is presumably the name of the gps and xml files without the extension. So you should probably run the program as follows:
perl kismet2kml.pl file_name when "file_name is the name of your files without the ".gps" or ".xml" extensions.
|