In message <372CDCAE.83AFB360(at)t-online.de> you write:
> Tag!
>
> Ich hab' da ein (hoffentlich) triviales, offenbar syntaktisches
> Problemchen mit 'find':
>
> % find /msdos -name "*.htm" -exec grep lab {} ;
> find: -exec: no terminating ";"
>
> Warum das? Ist doch alles da.
ich vermute es fehlt ein "\". Bei mir funktioniert:
find . -name "*.htm" -exec grep lab {} \; unter csh
ansonsten
find . -name "*.htm" | xargs grep lab
Bis dann
Matthias
To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org
with "unsubscribe de-bsd-questions" in the body of the message
Received on Mon 03 May 1999 - 08:04:42 CEST