From owner-svn-src-all@FreeBSD.ORG Sat Nov 28 11:05:23 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BE741065784; Sat, 28 Nov 2009 11:05:23 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0BB4A8FC19; Sat, 28 Nov 2009 11:05:23 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nASB5McD052640; Sat, 28 Nov 2009 11:05:22 GMT (envelope-from danger@svn.freebsd.org) Received: (from danger@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nASB5M1M052639; Sat, 28 Nov 2009 11:05:22 GMT (envelope-from danger@svn.freebsd.org) Message-Id: <200911281105.nASB5M1M052639@svn.freebsd.org> From: Daniel Gerzo Date: Sat, 28 Nov 2009 11:05:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r199871 - head/usr.bin/ldd X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Nov 2009 11:05:23 -0000 Author: danger (doc committer) Date: Sat Nov 28 11:05:22 2009 New Revision: 199871 URL: http://svn.freebsd.org/changeset/base/199871 Log: - correctly render the provided example PR: docs/140962 Submitted by: mharo Modified: head/usr.bin/ldd/ldd.1 Modified: head/usr.bin/ldd/ldd.1 ============================================================================== --- head/usr.bin/ldd/ldd.1 Sat Nov 28 00:50:09 2009 (r199870) +++ head/usr.bin/ldd/ldd.1 Sat Nov 28 11:05:22 2009 (r199871) @@ -63,7 +63,7 @@ The following is an example of a shell p option. It will print a report of all ELF binaries in the current directory, which link against libc.so.6: -.Dl "find . -type f | xargs -n1 file -F " " | grep ELF | cut -f1 -d' ' | xargs ldd -f '%A %o\en' | grep libc.so.6" +.Dl "find . -type f | xargs -n1 file -F ' ' | grep ELF | cut -f1 -d' ' | xargs ldd -f '%A %o\en' | grep libc.so.6" .Sh SEE ALSO .Xr ld 1 , .Xr nm 1 ,