Re: File Counts

2002-12-04 Thread Cliff Sarginson
On Tue, Dec 03, 2002 at 05:14:44PM +0200, Giorgos Keramidas wrote: > On 2002-12-02 21:26, Peter Leftwich <[EMAIL PROTECTED]> wrote: > > On Mon, 2 Dec 2002, Doug Hardie wrote: > > > Thanks to all who responded. The approach below does just what I needed. > > > > Here's another way I don't see liste

Re: File Counts

2002-12-03 Thread Giorgos Keramidas
On 2002-12-02 21:26, Peter Leftwich <[EMAIL PROTECTED]> wrote: > On Mon, 2 Dec 2002, Doug Hardie wrote: > > Thanks to all who responded. The approach below does just what I needed. > > Here's another way I don't see listed: > > $ find . -type f | wc -l > > This means "find, starting right here, al

Re: File Counts

2002-12-03 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2002-12-02 21:26:24 -0500: > On Mon, 2 Dec 2002, Doug Hardie wrote: > > Thanks to all who responded. The approach below does just what I > > needed. > > Here's another way I don't see listed: > > $ find . -type f | wc -l > > This means "find, starting right here, all files

Re: File Counts

2002-12-02 Thread Adam Weinberger
s in the status bar at the bottom, # of files, total > filesize(s) and so forth). >> end of "Re: File Counts" from Peter Leftwich << So use nautilus. # Adam - -- Adam Weinberger vectors.cx >> [EMAIL PROTECTED] FreeBSD.org << [EMAIL PROTEC

Re: File Counts

2002-12-02 Thread Peter Leftwich
On Mon, 2 Dec 2002, Adam Weinberger* wrote: > >> (12.02.2002 @ 1826 PST): Peter Leftwich said, in 1.4K: << > > Here's another way I don't see listed: > > $ find . -type f | wc -l > > This means "find, starting right here, all files here and in subdirectories > > - then pipe the output through word

Re: File Counts

2002-12-02 Thread Adam Weinberger
ries > - then pipe the output through word count just the lines." > > You'd think FreeBSD would have a command similar to ls, df, du or a flag to > the find command such as "-countitems" or something. >> end of "Re: File Counts" from Peter Leftwich <

Re: File Counts

2002-12-02 Thread Peter Leftwich
On Mon, 2 Dec 2002, Doug Hardie wrote: > Thanks to all who responded. The approach below does just what I needed. Here's another way I don't see listed: $ find . -type f | wc -l This means "find, starting right here, all files here and in subdirectories - then pipe the output through word count

Re: File Counts

2002-12-02 Thread Doug Hardie
Thanks to all who responded. The approach below does just what I needed. On Monday, Dec 2, 2002, at 12:02 US/Pacific, Nathan Kinkade wrote: On Mon, Dec 02, 2002 at 02:42:28PM -0500, Kliment Andreev wrote: How do I get a count of the files in directories? I need to be able to get a listing o

Re: File Counts

2002-12-02 Thread Alan Day
$ find . -type file | wc -l - Original Message - From: "Kliment Andreev" <[EMAIL PROTECTED]> To: "Doug Hardie" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, December 02, 2002 2:42 PM Subject: Re: File Counts > > How do I get a coun

Re: File Counts

2002-12-02 Thread Bill Schoolcraft
At Mon, 2 Dec 2002 it looks like Nathan Kinkade composed: > On Mon, Dec 02, 2002 at 02:42:28PM -0500, Kliment Andreev wrote: > > > How do I get a count of the files in directories? I need to be able to > > > get a listing of the number of files in a directory and counts for the > > > files in e

Re: File Counts

2002-12-02 Thread Nathan Kinkade
On Mon, Dec 02, 2002 at 02:42:28PM -0500, Kliment Andreev wrote: > > How do I get a count of the files in directories? I need to be able to > > get a listing of the number of files in a directory and counts for the > > files in each sub-directory. > > % ls -l | wc -l(In a directory)

Re: File Counts

2002-12-02 Thread Kliment Andreev
> How do I get a count of the files in directories? I need to be able to > get a listing of the number of files in a directory and counts for the > files in each sub-directory. % ls -l | wc -l(In a directory) % ls -lR | wc -l (Including sub-directories) To Unsubscrib

File Counts

2002-12-02 Thread Doug Hardie
How do I get a count of the files in directories? I need to be able to get a listing of the number of files in a directory and counts for the files in each sub-directory. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message