If i write in perl ,i can convert it to exe.
Regards
Javeed
-Original Message-
From: Ramprasad A Padmanabhan [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 09, 2002 6:53 PM
To: [EMAIL PROTECTED]
Subject: Re: change directories
Hey you need use perl to change a directory
If you
> -Original Message-
> From: Javeed SAR [mailto:[EMAIL PROTECTED]]
> Sent: 09 September 2002 11:25
> To: Sudarshan Raghavan; Perl beginners
> Subject: RE: change directories
>
>
> Hi,
>
> I printed the statement:
> print cwd;
> it's in right
]
> Sent: Tuesday, September 10, 2002 6:58 PM
> To: Perl beginners
> Subject: Re: change directories
>
>
> On Mon, 9 Sep 2002, Javeed SAR wrote:
>
>
>>Hi,
>>
>>How to change drives.
>>
>>For eg if i am in c: right now i want to move to M:
>
On Mon, 9 Sep 2002, Javeed SAR wrote:
> Hi,
>
> I printed the statement:
> print cwd;
> it's in right path, but the program comes out in c:\, i want the cursor to
> be in m:\test_merge1, in this dir i am executing a command, which is not
> executing?
The chdir inside your perl program will not
-Original Message-
From: Sudarshan Raghavan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 10, 2002 6:58 PM
To: Perl beginners
Subject: Re: change directories
On Mon, 9 Sep 2002, Javeed SAR wrote:
> Hi,
>
> How to change drives.
>
> For eg if i am in c: right now i want
perldoc -f chdir
__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
perldoc -f chdir
__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
On Mon, 9 Sep 2002, Javeed SAR wrote:
> Hi,
>
> How to change drives.
>
> For eg if i am in c: right now i want to move to M:
>
> Am i doing the right thing :
>
> chdir " M:\\test_merge1" ;
You can check this yourself
use Cwd;
print cwd; # This should print your current working dir
--
To