[ale] find usage...

Danny Cox danscox at mindspring.com
Sun Oct 10 21:09:08 EDT 2004


CB,

On Sun, 2004-10-10 at 20:23, Christopher Bergeron wrote:
> Can anyone tell me what the difference between these two "find" commands is?
> 
> find . -atime +6 -exec ll | more

	This runs a 'find' and pipes it's output to more.

> find . -atime +6 -exec ll | more \;

	This also runs a 'find', and pipes it's output to more, but you've
given more a filename of ';', so it ignores stdin, and tells you that it
can't open ";".

	Perhaps you might try:

	find . -atime +6 | xargs ll | more

which may or may not do what you wish.

-- 
kernel, n.: A part of an operating system that preserves the
medieval traditions of sorcery and black art.

Danny



More information about the Ale mailing list