Link to home
Start Free TrialLog in
Avatar of richsark
richsarkFlag for United States of America

asked on

How to execute a perl script from any directory in WIN7

Hello,

I am running WIN 7 Pro 64bit. My goal is to be able to execute a perl (.pl) from any directory I may be in.

For example, all my scripts are in c:\scripts

If I am using cmd shell and I am in c:\customers\foo I want to be able to hit the tab key while I type in a few characters of the perl script.

But it not working like that. I did set my PATH environment that included c:\scripts;:.:; along with other standard windows directories, but it wont find it.

What am I doing wrong here?

Thanks  
Avatar of yo_bee
yo_bee
Flag of United States of America image

Is your UAC (User Account Control).
Are we dealing with a single machine or multiple?
Avatar of richsark

ASKER

I have UAC off, single machine
You must add ".pl" to the PATHEXT environment variable.
HI,

FYI: This is my full PATH line:


C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\ActiveState Komodo Edit 6\;C:\Perl\site\bin\;C:\Perl\bin\;c:\Perl\bin\ppm\;c:\scripts;c:\unix;c:\bind;c:\Bind\BIND9.6.2-P2\;c:\Perl\lib\ppm\;c:\Perl\lib;c:\Perl\Bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\12.0\DLLShared\;C:\Program Files (x86)\Roxio\OEM\AudioCore\;C:\Program Files\VMware\VMware OVF Tool\;C:\Program Files\VanDyke Software\Clients\;C:\:.:;:.:;C:\Program Files (x86)\QuickTime\QTSyste;c:\regina;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\

Open in new window

Also, If I hand type the name of the perl script it runs fine in a directory. My goal is to be able to hit the TAB key in a directory with a few names of the perl script.

Thanks
Hi Papertrip, I did that still no TAB key of the perl script with any name combo.
On the command line, type the following, there are examples for exactly what you are trying to do.

help assoc
help ftype

Open in new window

Hi Papertrip, I did that still no TAB key of the perl script with any name combo.

Apologies I left out some key info, updated in my last post.
Hi Papertrip,

I still dont get it. I added the below to PATHEXT
.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.pl;%PATHEXT%

still no TAB key.
Disregard my first comment, I had company over and was quite distracted.

Adding .pl to PATHEXT envvar will allow you to execute a command without requiring the extension -- ie: myscript vs myscript.pl

If you run 'help ftype' you will see examples of exactly what you need to do.

C:\Users\blah>help ftype
Displays or modifies file types used in file extension associations

FTYPE [fileType[=[openCommandString]]]

  fileType  Specifies the file type to examine or change
  openCommandString Specifies the open command to use when launching files
                    of this type.

Type FTYPE without parameters to display the current file types that
have open command strings defined.  FTYPE is invoked with just a file
type, it displays the current open command string for that file type.
Specify nothing for the open command string and the FTYPE command will
delete the open command string for the file type.  Within an open
command string %0 or %1 are substituted with the file name being
launched through the assocation.  %* gets all the parameters and %2
gets the 1st parameter, %3 the second, etc.  %~n gets all the remaining
parameters starting with the nth parameter, where n may be between 2 and 9,
inclusive.  For example:

    ASSOC .pl=PerlScript
    FTYPE PerlScript=perl.exe %1 %*

would allow you to invoke a Perl script as follows:

    script.pl 1 2 3

If you want to eliminate the need to type the extensions, then do the
following:

    set PATHEXT=.pl;%PATHEXT%

and the script could be invoked as follows:

    script 1 2 3

Open in new window


I'm not sure if that will enable you to tab complete 'myscript' or 'myscript.pl', but if you can run the command from any directory after the change, that is a step in the right direction.

I believe the way command line tab-completion works in Windows is that it will auto-complete file and directory names relevant to your current working directory, but does not work exactly like a Unix PATH envvar by allowing a command to be ran from any directory using just the executable name.  I could be totally wrong on this part, but pretty sure about the rest ;)

Ok. Yea, maybe it's a windows limitation. I can tab complete in my wd, but not something located else where like a different directory.

Perhaps someone can confirm this. If it ain't suppose to work then i can stop scratching my head.

Well you can scratch your head about that part, but what about being able to execute a script located in c:\scripts from a different directory, you are trying to accomplish that as well right?
H, I can run the script from any directory as long as I know the whole spelling. I was looking for a tab complete way.
H, I can run the script from any directory as long as I know the whole spelling. I was looking for a tab complete way.
:-/

The title of your request and first sentence are, respectively,
How to execute a perl script from any directory in WIN7
I am running WIN 7 Pro 64bit. My goal is to be able to execute a perl (.pl) from any directory I may be in.
Are you saying you were already able to execute a script located in c:\scripts before I gave advice?
If not, then if what I suggested works, I have resolved what appears to have been the original issue.

If you are now, after my advice, able to execute a script found in c:\scripts from any directory, then this question has been answered.  It is unfortunate that tab-completion doesn't appear to work as you would wish, but I think you may have distinct questions here.
ASKER CERTIFIED SOLUTION
Avatar of Papertrip
Papertrip
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial