Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If i run this command in cygwin(on windows xp platform)

perl /cygdrive/c/Sagar/New_ISP/isp_fw_11_24_Test_V1/Scripts/w indows_test_report_tool/testdbmerge.pl

I get this error

Can't open perl script "/cygdrive/c/Sagar/New_ISP/isp_fw_11_24_Test_V1/Scripts/w indows_test_report_tool/testdbmerge.pl": No such file or directory.

Why this is...

share|improve this question
Assuming the file does indeed exist - do you have access rights for the file + the directories? What does ls -l <file> give you? – Frank Schmitt May 3 '11 at 6:32
it was giving -r-x------ i changed its permission using chmod to -rwxrwxrwx. Even then it is giving the same error. – Sagar Gupta M. May 3 '11 at 7:23
Does the first line of your script look like #!/some/path/perl? – mu is too short May 3 '11 at 7:36
2  
What's with the newline after /w? Remove it. – reinierpost May 3 '11 at 8:44

1 Answer

Make sure that the first perl on your path is the cygwin perl; if it is a native Win32 perl (ActiveState or Strawberry, for instance), it won't understand cygwin paths.

perl -V:osname should report cygwin, not MSWin32.

share|improve this answer
It is giving $ perl -V:osname osname='MSWin32'; – Sagar Gupta M. May 3 '11 at 7:26
But i was able to run other perl scripts in other directories, but i am not able to run perl scripts in this directory, in the same cygwin. – Sagar Gupta M. May 3 '11 at 7:27
@Sagar, the MSWin32 perl doesn't understand any path that starts with /cygdrive/. If you did perl c:/Sagar/New_ISPisp_fw_11_24_Test_V1/Scripts/windows_test_report_tool/testdbmerg‌​e.pl it would work. – cjm May 3 '11 at 7:35
3  
Or perl `cygpath -w /cygdrive/c/Sagar/New_ISP/isp_fw_11_24_Test_V1/Scripts/windows_test_report_tool/‌​testdbmerge.pl` – reinierpost May 3 '11 at 8:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.