Equivalent syntax similiar to dir /w /s in Windows command prompt

2005-03-02 Thread Scott Hamm
Is there any equivalent syntax similiar to dir /w /s for all *.doc to insert into mysql database? -- Power to people, Linux is here. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Equivalent syntax similiar to dir /w /s in Windows command prompt

2005-03-02 Thread Ryan Yagatich
Is 'find' what you're looking for? find ${path} -type f -iname '*.doc' -print find ${path} -type f -iname '*.doc' -exec /some/import/script {} \; Thanks, Ryan Yagatich ,__, / Ryan Yagatich Pantek Incorporated | \

Re: Equivalent syntax similiar to dir /w /s in Windows command prompt

2005-03-02 Thread Scott Hamm
That works on Unix, not on Windows machine. I'm looking for mysql internal utility for Windows machine. On Wed, 2 Mar 2005 09:18:09 -0500 (EST), Ryan Yagatich [EMAIL PROTECTED] wrote: Is 'find' what you're looking for? find ${path} -type f -iname '*.doc' -print find ${path} -type f