Hi
Please start a new thread to ask a question
I am writing a perl scipt in that I want to change the dir to some other and run a exe from there is it possible?
Yes it is possible, it is also possible to do that without changing to that directory
Because chdir is not working there.
Why do you say chdir is not working? Does the call return false? What is the value stored in $!?
Change your code to
chdir ($your_dir) or die "chdir failed, $!\n";
and see what happens
Thanks and Regards -Gayatri
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]