It is also necessary to use sudo on OS X (actually there are ways around it for any OS).

Bob N7XY

On Mar 5, 2010, at 10:48 AM, Curt, WE7U wrote:

On Fri, 5 Mar 2010, Denton K Larson wrote:

Do you know how to get a perl script to run? get-fcc-rac.pl is what I am trying to run.

Generally the current directory, known as '.' (a period) is not in
your default path for security reasons.  So...  If you're sitting at
the directory where the Perl script resides, you can run it like
this:

    ./get-fcc-rac.pl

That tells it the path to the file, which is the current directory.
Of course the script must be marked as executable as well.  Look up
the "chmod" command to figure out how to set the executable flags.
"chmod ugo+x" or "chmod 755" out'a do it.  "ls -l" will show you the
flags.

For this particular script you need to be root to run it, so
something like this on Ubuntu/Kubuntu:

    sudo ./get-fcc-rac.pl

or this on any other Unix/Linux system:

    su
    ./get-fcc-rac.pl
    exit        # (from root)

--
Curt, WE7U.                         <http://www.eskimo.com/~archer>
   APRS:  Where it's at!                    <http://www.xastir.org>
  Lotto:  A tax on people who are bad at math. - unknown
Windows:  Microsoft's tax on computer illiterates. - WE7U.
The world DOES revolve around me:  I picked the coordinate system!"
_______________________________________________
Xastir mailing list
[email protected]
http://lists.xastir.org/cgi-bin/mailman/listinfo/xastir

_______________________________________________
Xastir mailing list
[email protected]
http://lists.xastir.org/cgi-bin/mailman/listinfo/xastir

Reply via email to