in reply to Converting perl script to exe
As davorg mentioned, perl2exe is probably not in your path, meaning that your path probably doesn't contain the current directory ".".
You can either try calling it directly:
./perl2exe sample.pl
Or you can try temporarily putting the current directory "." in your path with one of the following:
# If you use 'bash' (or similar), add '.' to the path this way export PATH=.:$PATH hash # If you use 'tcsh' (or similar), add '.' to the path this way set path = ( . $path ) rehash
Notice that you should do the 'hash' (or 'rehash' command in tcsh) to be sure that the change to the path take immediate effect.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Converting perl script to exe
by davorg (Chancellor) on Jul 26, 2006 at 14:51 UTC | |
by liverpole (Monsignor) on Jul 26, 2006 at 14:56 UTC |