From owner-freebsd-questions Mon Jul 3 13:53:34 2000 Delivered-To: freebsd-questions@freebsd.org Received: from shell.wetworks.org (shell.wetworks.org [63.160.175.19]) by hub.freebsd.org (Postfix) with SMTP id 0393637B930 for ; Mon, 3 Jul 2000 13:53:32 -0700 (PDT) (envelope-from abc@shell.wetworks.org) Received: (qmail 51357 invoked by uid 1000); 3 Jul 2000 20:53:33 -0000 Date: Mon, 3 Jul 2000 16:53:33 -0400 From: Alan Clegg To: Christoph Sold Cc: FreeBSD-Questions@FreeBSD.org Subject: Re: find -exec Problem Message-ID: <20000703165333.F42727@shell.wetworks.org> References: <3960FC7A.4217804D@i-clue.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <3960FC7A.4217804D@i-clue.de>; from so@server.i-clue.de on Mon, Jul 03, 2000 at 10:50:02PM +0200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG An SMTP stream claimed that Christoph Sold muttered: > # find . -type d -print -exec 'chmod o+rx {}'; > find: -exec: no terminating ";" > > To me, this command look like it is in sync wiht it's manpage. What am I > doing wrong here? Add a \ before the ; ie: find . -type d -print -exec 'chmod o+rx {}' \; AlanC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message