Re: Dir Command to an array

2005-10-28 Thread Chris Devers
On Fri, 28 Oct 2005 [EMAIL PROTECTED] wrote: > I would like to execute a dir */s command in windows and save the > output into an array. I know I can do this in perl by doing executing > the following command in a perl script: > > @allfiles = `find / -print`; You can, but you shouldn't. The

RE: Dir Command to an array

2005-10-28 Thread Timothy Johnson
PROTECTED] Sent: Friday, October 28, 2005 2:18 PM To: beginners perl Subject: Dir Command to an array Hello I would like to execute a dir */s command in windows and save the output into an array. I know I can do this in perl by doing executing the following command in a perl script: @allfiles

Dir Command to an array

2005-10-28 Thread andrewmchorney
Hello I would like to execute a dir */s command in windows and save the output into an array. I know I can do this in perl by doing executing the following command in a perl script: @allfiles = `find / -print`; How can do this in windows: Thanks, Andrew -- To unsubscribe, e-mail: [EMAIL PR