From owner-freebsd-questions@FreeBSD.ORG Mon Jan 10 21:19:37 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1276C1065675 for ; Mon, 10 Jan 2011 21:19:37 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout027.mac.com (asmtpout027.mac.com [17.148.16.102]) by mx1.freebsd.org (Postfix) with ESMTP id EF2528FC19 for ; Mon, 10 Jan 2011 21:19:36 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from cswiger1.apple.com ([17.209.4.71]) by asmtp027.mac.com (Oracle Communications Messaging Exchange Server 7u4-18.01 64bit (built Jul 15 2010)) with ESMTPSA id <0LET00KDRSK2FY30@asmtp027.mac.com> for freebsd-questions@freebsd.org; Mon, 10 Jan 2011 13:19:15 -0800 (PST) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2011-01-10_09:2011-01-10, 2011-01-10, 1970-01-01 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=1 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1010190000 definitions=main-1101100107 From: Chuck Swiger In-reply-to: <20110110211331.E12A6106566B@hub.freebsd.org> Date: Mon, 10 Jan 2011 13:19:14 -0800 Message-id: <9ED07C3D-3AC9-4C0D-9A53-D1441C057466@mac.com> References: <20110110211331.E12A6106566B@hub.freebsd.org> To: peter@vfemail.net X-Mailer: Apple Mail (2.1082) Cc: freebsd-questions@freebsd.org Subject: Re: File Listing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2011 21:19:37 -0000 On Jan 10, 2011, at 12:43 PM, peter@vfemail.net wrote: > Is there one single-line command I can execute that will list every file in every directory on my FreeBSD box? I've been fussing with the ls and du commands, but the output is never quite complete. du -a / find / -type f # remove the "-type f" argument if you want every file, instead of just "normal" files Regards, -- -Chuck