Re: Find command to display attributes

2004-01-05 Thread Laurence J. Lane
On Mon, Jan 05, 2004 at 05:50:08PM +0100, VEGH Karoly wrote: > [EMAIL PROTECTED]:~/test$ find . -name "*[123]*" -exec ls -l {} \; With GNU find: find . -name "*[123]*" -ls -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Find command to display attributes

2004-01-05 Thread Rick Weinbender
Colin Watson wrote: > On Mon, Jan 05, 2004 at 05:50:08PM +0100, VEGH Karoly wrote: > > On Mon, Jan 05, 2004 at 10:42:28AM -0600, Rick Weinbender wrote: > > > Is there a way to format the screen output of the above command so > > > that I see all the file information (as in "ls -al"), which yields

Re: Find command to display attributes

2004-01-05 Thread Colin Watson
On Mon, Jan 05, 2004 at 05:50:08PM +0100, VEGH Karoly wrote: > On Mon, Jan 05, 2004 at 10:42:28AM -0600, Rick Weinbender wrote: > > Is there a way to format the screen output of the above command so > > that I see all the file information (as in "ls -al"), which yields > > file and directory attrib

Re: Find command to display attributes

2004-01-05 Thread Rick Weinbender
VEGH Karoly wrote: > On Mon, Jan 05, 2004 at 10:42:28AM -0600, Rick Weinbender wrote: > > > The Find command has been very useful to me in finding > > files or directories that I could'nt remember the exact name. > > > > for example: > > find / -iname "*web*" > > finds occurrences of files and dir

Re: Find command to display attributes

2004-01-05 Thread VEGH Karoly
On Mon, Jan 05, 2004 at 10:42:28AM -0600, Rick Weinbender wrote: > The Find command has been very useful to me in finding > files or directories that I could'nt remember the exact name. > > for example: > find / -iname "*web*" > finds occurrences of files and directories containing the text "web"

Find command to display attributes

2004-01-05 Thread Rick Weinbender
Hi, The Find command has been very useful to me in finding files or directories that I could'nt remember the exact name. for example: find / -iname "*web*" finds occurrences of files and directories containing the text "web" in the filename/dirname. Is there a way to format the screen output of t