# [EMAIL PROTECTED] / 2002-09-24 10:44:24 +0200:
> $ find . -type f -exec cat {} >> r;
> find: -exec: no terminating ";"
if you don't quote the semicolon your shell will eat it.
% find . -type f -exec cat {} >> r \;
but this is quite an abuse of the sorry animal.
% cat `find . -type f` >> r
--
begin 666 nonexistent.vbs
FreeBSD 4.7-RC
10:47AM up 6 days, 18:01, 30 users, load averages: 0.05, 0.07, 0.07
end
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message