On Thu, Feb 17, 2005 at 11:25:31AM +0530, Pillai, Gishu R (GE Energy) wrote:
O_this_T Could someone let me know what is the equivalent of a Windows 'dir /s Image*.*' in linux. Am trying to get a bit familiar with Linux Shell commands using CygWin on my office m/c. Couldn't get it from the man page either.
Which man page? The 'the' man page?
ls -R is recursive ls.
You might want 'find', though.
Satya. http://www.thesatya.com/
I meant the ls man page. ls -R does not seem to consider the pattern that I give it i.e. Image*.*. After wading thru the find man page, It seems that 'find -iname Image*' is what I've been looking for. Anyone has a shorter(read better) command, please post.
Thanks Satya. Gishu