Re: Windows-Command line Arguments

2007-06-14 Thread raj esh
Dear Guru's, I want to set the date of the system. The problem got solved by usiong the following method. # use strict; use warnings; my $result = system ("date < newdate.txt"); # In newdate.txt i entered my own date. I used Win32::API module in another perl cod

Windows-Command line Arguments

2007-06-13 Thread raj esh
Dear Guru's, Here is my sample script...which i am running on windows. use strict; use warnings; my $result = system ( "date"); Now Date command returns me one more command prompt on which i have to enter current date(means need to enter another command) how do i enter on

Windows-Command line Arguments

2007-06-13 Thread raj esh
Dear Guru's, Here is my sample script...which i am running on windows. use strict; use warnings; my $result = system ( "date"); Now Date command returns me one more command prompt on which i have to enter current date(means need to enter another command) how do i enter on

Windows-Command line Arguments

2007-06-13 Thread raj esh
Dear Guru's, Here is my sample script...which i am running on windows. use strict; use warnings; my $result = system ( "date"); Now Date command returns me one more command prompt on which i have to enter current date(means need to enter another command) how do i enter on