Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Jan 2019 21:49:00 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 229481] find(1) fails to expand {} with preceding/following non-whitespace, as specified by man page
Message-ID:  <bug-229481-227-DCc8Y1B42Y@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-229481-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-229481-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229481

Oleksandr Tymoshenko <gonzo@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gonzo@FreeBSD.org
         Resolution|---                         |Not A Bug
             Status|New                         |Closed

--- Comment #1 from Oleksandr Tymoshenko <gonzo@FreeBSD.org> ---
this looks like possible csh issue:

/bin/sh and bash:

% /usr/bin/find . -maxdepth 1 -exec echo "(result):"{}  \;
(result):.
(result):./dir 3
(result):./-foo
(result):./dir 4
(result):./ dir 5
(result):./dir 2
(result):./dir 1

/bin/csh and /bin/tcsh:

% /usr/bin/find . -maxdepth 1 -exec echo "(result):"{}  \;
(result):
(result):
(result):
(result):
(result):
(result):
(result):
% /usr/bin/find . -maxdepth 1 -exec echo "(result):"\{\} \;
(result):.
(result):./dir 3
(result):./-foo
(result):./dir 4
(result):./ dir 5
(result):./dir 2
(result):./dir 1

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-229481-227-DCc8Y1B42Y>