I have a perl script which calls for shell commands, this runs in cygwin.
Ex
cat a.txt | egrep $a
Currently I required to convert this to EXE and run win 7. I used perl2exe to convert this works well on cygwin installed. This doesnt work without cygwin installed.
Is there any way to convert the script to exe and runs without help of cygwin.
Thanks in advance
Take a look at PAR::Packer
It packs the Perl interpreter and all required modules into an executable package.