Commit graph

14 commits

Author SHA1 Message Date
Tom Russo
cd2be5c7ba Remove "-W" and "-w" from shebang, then "use warnings"
Wheen I replaced the non-portable "#!/usr/bin/perl" with the portable
"#!/usr/bin/env perl" I neglected the fact that some scripts have a -w
or -W argument after the command.  This can't work with env, and the
correct approach is to put "use warnings;" in the script instead.
2019-04-18 17:16:53 -06:00
Tom Russo
ff6a050077 Remove hard-coded perl and bash paths
A lot of scripts in this directory had "#!/usr/bin/perl" hard coded at
their tops.  This is wrong, because perl may not be installed
there (it isn't on a lot of non-Linux systems).  I have replaced the
hard-coded path with "/usr/bin/env perl" which will locate the perl
binary in the user's PATH.

Some scripts in this directory already had that.  Those are scripts
that I actually use myself on a system that has perl in
/usr/local/bin, and so I had already fixed them.

Another alternative to using /usr/bin/env would be to create a
configure test to find the perl binary, then substitute it in a .in
version of the script.  That is more work, for negligible benefit.
2019-04-18 16:13:52 -06:00
Tom Russo
b93882890c Remove old CVS keywords
CVS keywords such as "$Id$" no longer serve any purpose now that we're
using git, and need to be removed.  This commit removes all of the
"$Id$" keywords, and a few other CVS keywords of no current value.

I also had to change some lines of the scripts/lang*.pl files that were
looking for $Id$ tags in their input and replacing them with comments.
The entire intent of this was to add two lines of comments to the top of
the output, and now it just does that, instead of depending on the
presence of the $Id$ keyword.
2016-07-28 17:00:29 -06:00
Curt Mills
3960c296a1 Removing the Copyright noticed from scripts that were released to the
public domain.  They are mutually exclusive.
2010-07-03 22:09:48 +00:00
Curt Mills
80a32b24a5 Updating Copyright notice for 2010. 2010-01-31 02:12:25 +00:00
Curt Mills
52ce398a87 Changes to the comments/description. 2005-03-25 20:53:04 +00:00
Curt Mills
62205062fa Changed to inf2geo.pl to accomodate other image formats. Tweaks to
other scripts regarding copyright notices only.
2003-01-06 22:42:19 +00:00
Curt Mills
e8d30be475 Modifying each script to add a path to /usr/local/lib in order to find the
Coordinate.pm module.
2002-08-26 21:52:03 +00:00
Curt Mills
97df1a90e9 Adding a blank line between user input and output lines. 2002-08-14 20:51:05 +00:00
Curt Mills
65c5bcce81 And handling yet another format... 2002-08-14 18:21:03 +00:00
Curt Mills
042bbc8b0b Tweaks to more properly format some inputs. 2002-08-14 18:15:44 +00:00
Curt Mills
751fe3ebd6 Tweaks to allow shorter lat/lon strings to be processed. 2002-08-14 17:55:06 +00:00
Curt Mills
6e0349a0b7 Added the capability to write APRS Items to a log file that can be
sucked in by Xastir.
2002-08-14 17:12:20 +00:00
Curt Mills
00a74c0865 New script which will show various permutations for a lat/lon or UTM
input.  Eventually plan to have this script write a log file
containing objects so that Xastir can plot each of the positions.
This will be useful in quickly determining which of the formats is
within the area of interest.  Developed this for Search & Rescue
applications.
2002-08-14 00:12:00 +00:00