Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I run programs with Strawberry Perl?

A coworker is trying to use ack (a Perl program) on his Windows machine, having tried it under Linux and decided he definitely wants to use it. He managed to get Strawberry Perl installed on his machine, but can't seem to figure out what to do to make ack run with it from a command prompt. He tried editing the #! line, but I knew that wouldn't work. I'm pretty sure Strawberry perl is in his PATH.

What do you need to do to run a general Perl program in your PATH on Windows using Strawberry?

Update: I'm seeing some information online about the PATHEXT variable, but not enough.

like image 502
skiphoppy Avatar asked Mar 20 '09 18:03

skiphoppy


People also ask

What is the use of Strawberry Perl?

Strawberry Perl is a perl environment for MS Windows containing all you need to run and develop perl applications. It is designed to be as close as possible to perl environment on UNIX systems.

Which command is used to run Perl script programs?

To make a Perl script file executable, you need to add '#!/usr/bin/perl' to the beginning of the script. There are many ways to run Perl scripts on Linux: 1. Run the "perl" command with the Perl script included in the command line.


1 Answers

First, be careful that the program is in the Path, not just perl.exe. The Perl binaries and core programs usually end up in <installdir>\bin, but others may end up in the site specific directory <installdir>\site\bin. The command

dir C:\strawberry\ack* /s 

might aid your search. Make sure your Path reflects your setup.

There are two common ways, at least that I know of, to run a Perl program from the Windows Command Prompt.

The first is to create a batch version of the program with pl2bat, which will execute perl with the program. Installed programs usually do this automatically because MakeMaker and Module::Build take care of this.

The second is to create a .pl file association. This is done by creating the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.pl\Shell\Open\Command (or HKEY_CURRENT_USER if it's for the current user only) and set the (Default) value to

"C:\strawberry\perl\bin\perl.exe" "%1" %* 

That way, you can call programs just by naming them with the .pl extension. Now you can invoke the program with program.pl.

You may have noticed that you can call a program on Windows without the extension. The program is searched for in the Path, but when there's no extension, PATHEXT is used to complete the name. Append .pl to the list, and you can invoke the program just with program. Note that the order in this list is important for the search, just as the order in Path matters.

Installers usually take care of the last two steps, but this knowledge is useful if you'd like to add your own or need to fix it.

like image 196
Ronald Blaschke Avatar answered Sep 20 '22 02:09

Ronald Blaschke