Re: Counting occurrences of names

2020-10-10 Thread @lbutlr
On 07 Oct 2020, at 08:10, Rod Buchanan  wrote:
> cut -d' ' -f3-4 | sort | uniq -c

And, since there are many way to do this, I generally fall back to awk

awk '{print $3, $4}' | sort | uniq -c

Which does exactly the same thing.


-- 
showing snuffy is when Sesame Street jumped the shark

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/AB126847-EC8C-4FE8-81E2-70094ED035F1%40kreme.com.


Re: Counting occurrences of names

2020-10-08 Thread Rod Buchanan

Add:

| sort -k 1nr,2

To the end of the UNIX command, i.e.

cut -d' ' -f3-4 | sort | uniq -c | sort -k 1nr,2

’-k 1nr’ says sort the first field numerically in reverse order, then sort on 
the second field ‘2’

Again, “man sort” for more info.

-- 
Rod

> On Oct 8, 2020, at 6:54 AM, Howard  wrote:
> 
> Rod,
> 
> Your explanation is very helpful.
> 
> Here is the result your code yields:
>2 Apple Jones
>1 Banana Herb
>4 Harvey Haney
>2 Sam Blue
> 
> What if I want the output displayed like this: (How would I get that?)
>4 Harvey Haney
>2 Apple Jones
>2 Sam Blue
>1 Banana Herb
> 
> Thus, the names are ordered by the number of times they appear, and if two or 
> more names have the same number of occurrences, they are displayed in 
> alphabetical order.
> 
> Howard
> On Wednesday, 7 October 2020 at 11:12:30 pm UTC-4 Rod Buchanan wrote:
> 
> -d’ ’ tells cut to use the space character as the column/field delimiter.
> 
> -f3-4 tells it to only return columns/fields 3 and 4.
> 
> 
> From the man page. (Type “man cut” in Terminal.app for complete info.)
> 
> cut -- cut out selected portions of each line of a file.  
> 
> SYNOPSIS
>  cut -f list [-d delim] [-s] [file ...]
> 
> DESCRIPTION
>  The cut utility cuts out selected portions of each line (as specified by 
> list)
>  from each file and writes them to the standard output.  If no file 
> arguments are
>  specified, or a file argument is a single dash (`-'), cut reads from the 
> standard
>  input.  The items specified by list can be in terms of column position 
> or in
>  terms of fields delimited by a special character.  Column numbering 
> starts from
>  1.
> 
> -d delim
>  Use delim as the field delimiter character instead of the tab 
> character.
> 
> -f list
>  The list specifies fields, separated in the input by the field 
> delimiter
>  character (see the -d option.)  Output fields are separated by a 
> single
>  occurrence of the field delimiter character.
> 
> -- 
> Rod
> 
> 
>> On Oct 7, 2020, at 11:03 AM, Howard > > wrote:
>> 
> 
>> Rod,
>> 
>> What does the line below do?
>> cut -d' ' -f3-4 
>> 
>> Howard
>> 
>> On Wednesday, 7 October 2020 at 10:11:31 am UTC-4 Rod Buchanan wrote:
>> 
>> Click Text -> Run Unix Command… , then run this:
>> 
>>  cut -d' ' -f3-4 | sort | uniq -c
>> 
>> When I copy/paste your data I get these results:
>> 
>>2 Apple Jones
>>1 Banana Herb
>>4 Harvey Haney
>>2 Sam Blue
>> 
>> -- 
>> Rod
>> 
>> 
>> -- 
>> Rod
>> 
>> 
>>> On Oct 6, 2020, at 1:23 PM, Howard > wrote:
>>> 
>> 
>>> I have the following data (shown below). I want to count how many times 
>>> each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
>>> Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
>>> on how it can be done.
>>> 
>>> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
>>> 10:46:08 From Apple Jones : I'm doing good. How are you?
>>> 10:46:12 From Banana Herb : Good how are you!
>>> 10:46:18 From Sam Blue : I'm doing fine. How are you?
>>> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
>>> 10:46:08 From Harvey Haney : I'm doing good. How are you?
>>> 10:46:12 From Apple Jones : Good how are you!
>>> 10:46:18 From Sam Blue : I'm doing fine. How are you?
>>> 10:45:57 From Harvey Haney : Good morning.
>>> 
>> 
>>> -- 
>>> This is the BBEdit Talk public discussion group. If you have a feature 
>>> request or need technical support, please email "sup...@barebones.com <>" 
>>> rather than posting here. Follow @bbedit on Twitter: 
>>> >
>>> --- 
>>> You received this message because you are subscribed to the Google Groups 
>>> "BBEdit Talk" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to bbedit+un...@googlegroups.com <>.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>>>  
>>> .
>> 
>> 
>> -- 
>> This is the BBEdit Talk public discussion group. If you have a feature 
>> request or need technical support, please email "sup...@barebones.com 
>> " rather than posting 
>> here. Follow @bbedit on Twitter: > >
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "BBEdit Talk" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to bbedit+un...@googlegroups.com 
>> .
> 
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/bbedit/83b7baf3-4b7a-4c49-8e5a-697b57795215n%40googlegroups.com
>>  
>> 

Re: Counting occurrences of names

2020-10-08 Thread Howard
Rod,

Your explanation is very helpful.

Here is the result your code yields:
   2 Apple Jones
   1 Banana Herb
   4 Harvey Haney
   2 Sam Blue

What if I want the output displayed like this: (How would I get that?)
   4 Harvey Haney
   2 Apple Jones
   2 Sam Blue
   1 Banana Herb

Thus, the names are ordered by the number of times they appear, and if two 
or more names have the same number of occurrences, they are displayed in 
alphabetical order.

Howard
On Wednesday, 7 October 2020 at 11:12:30 pm UTC-4 Rod Buchanan wrote:

>
> -d’ ’ tells cut to use the space character as the column/field delimiter.
>
> -f3-4 tells it to only return columns/fields 3 and 4.
>
>
> From the man page. (Type “man cut” in Terminal.app for complete info.)
>
> cut -- cut out selected portions of each line of a file.  
>
> SYNOPSIS
>  cut -f list [-d delim] [-s] [file ...]
>
> DESCRIPTION
>  The cut utility cuts out selected portions of each line (as specified 
> by list)
>  from each file and writes them to the standard output.  If 
> no file arguments are
>  specified, or a file argument is a single dash (`-'), cut reads from 
> the standard
>  input.  The items specified by list can be in terms of column 
> position or in
>  terms of fields delimited by a special character.  Column numbering 
> starts from
>  1.
>
> -d delim
>  Use delim as the field delimiter character instead of the tab 
> character.
>
> -f list
>  The list specifies fields, separated in the input by the 
> field delimiter
>  character (see the -d option.)  Output fields are separated 
> by a single
>  occurrence of the field delimiter character.
>
> -- 
> Rod 
>
> On Oct 7, 2020, at 11:03 AM, Howard  wrote:
>
> Rod,
>
> What does the line below do?
> cut -d' ' -f3-4 
>
> Howard
>
> On Wednesday, 7 October 2020 at 10:11:31 am UTC-4 Rod Buchanan wrote:
>
>>
>> Click Text -> Run Unix Command… , then run this:
>>
>> cut -d' ' -f3-4 | sort | uniq -c
>>
>> When I copy/paste your data I get these results:
>>
>>2 Apple Jones
>>1 Banana Herb
>>4 Harvey Haney
>>2 Sam Blue
>>
>> -- 
>> Rod 
>>
>>
>> -- 
>> Rod 
>>
>> On Oct 6, 2020, at 1:23 PM, Howard  wrote:
>>
>> I have the following data (shown below). I want to count how many times 
>> each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
>> Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
>> on how it can be done.
>>
>> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
>> 10:46:08 From Apple Jones : I'm doing good. How are you?
>> 10:46:12 From Banana Herb : Good how are you!
>> 10:46:18 From Sam Blue : I'm doing fine. How are you?
>> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
>> 10:46:08 From Harvey Haney : I'm doing good. How are you?
>> 10:46:12 From Apple Jones : Good how are you!
>> 10:46:18 From Sam Blue : I'm doing fine. How are you?
>> 10:45:57 From Harvey Haney : Good morning.
>>
>> -- 
>> This is the BBEdit Talk public discussion group. If you have a feature 
>> request or need technical support, please email "sup...@barebones.com" 
>> rather than posting here. Follow @bbedit on Twitter: <
>> https://twitter.com/bbedit>
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "BBEdit Talk" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to bbedit+un...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>>  
>> 
>> .
>>
>>
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+un...@googlegroups.com.
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/83b7baf3-4b7a-4c49-8e5a-697b57795215n%40googlegroups.com
>  
> 
> .
>
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 

Re: Counting occurrences of names

2020-10-07 Thread Rod Buchanan

-d’ ’ tells cut to use the space character as the column/field delimiter.

-f3-4 tells it to only return columns/fields 3 and 4.


>From the man page. (Type “man cut” in Terminal.app for complete info.)

cut -- cut out selected portions of each line of a file.  

SYNOPSIS
 cut -f list [-d delim] [-s] [file ...]

DESCRIPTION
 The cut utility cuts out selected portions of each line (as specified by 
list)
 from each file and writes them to the standard output.  If no file 
arguments are
 specified, or a file argument is a single dash (`-'), cut reads from the 
standard
 input.  The items specified by list can be in terms of column position or 
in
 terms of fields delimited by a special character.  Column numbering starts 
from
 1.

-d delim
 Use delim as the field delimiter character instead of the tab 
character.

-f list
 The list specifies fields, separated in the input by the field 
delimiter
 character (see the -d option.)  Output fields are separated by a 
single
 occurrence of the field delimiter character.

-- 
Rod

> On Oct 7, 2020, at 11:03 AM, Howard  wrote:
> 
> Rod,
> 
> What does the line below do?
> cut -d' ' -f3-4 
> 
> Howard
> 
> On Wednesday, 7 October 2020 at 10:11:31 am UTC-4 Rod Buchanan wrote:
> 
> Click Text -> Run Unix Command… , then run this:
> 
>   cut -d' ' -f3-4 | sort | uniq -c
> 
> When I copy/paste your data I get these results:
> 
>2 Apple Jones
>1 Banana Herb
>4 Harvey Haney
>2 Sam Blue
> 
> -- 
> Rod
> 
> 
> -- 
> Rod
> 
> 
>> On Oct 6, 2020, at 1:23 PM, Howard > > wrote:
>> 
> 
>> I have the following data (shown below). I want to count how many times each 
>> of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam Blue). 
>> Can this be done in BBEdit? If not, I would appreciate suggestions on how it 
>> can be done.
>> 
>> 10:45:57  From Harvey Haney : Good morning. How is everyone today?
>> 10:46:08  From Apple Jones : I'm doing good. How are you?
>> 10:46:12  From Banana Herb : Good how are you!
>> 10:46:18  From Sam Blue : I'm doing fine. How are you?
>> 10:45:57  From Harvey Haney : Good morning. How is everyone today?
>> 10:46:08  From Harvey Haney : I'm doing good. How are you?
>> 10:46:12  From Apple Jones : Good how are you!
>> 10:46:18  From Sam Blue : I'm doing fine. How are you?
>> 10:45:57  From Harvey Haney : Good morning.
>> 
> 
>> -- 
>> This is the BBEdit Talk public discussion group. If you have a feature 
>> request or need technical support, please email "sup...@barebones.com 
>> " rather than posting 
>> here. Follow @bbedit on Twitter: > >
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "BBEdit Talk" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to bbedit+un...@googlegroups.com 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>>  
>> .
> 
> 
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "supp...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: 
> >
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/83b7baf3-4b7a-4c49-8e5a-697b57795215n%40googlegroups.com
>  
> .

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/9D5C7366-A252-44E3-B070-032C4A0813ED%40sofstats.com.


Re: Counting occurrences of names

2020-10-07 Thread Howard
Rod,

What does the line below do?
cut -d' ' -f3-4 

Howard

On Wednesday, 7 October 2020 at 10:11:31 am UTC-4 Rod Buchanan wrote:

>
> Click Text -> Run Unix Command… , then run this:
>
> cut -d' ' -f3-4 | sort | uniq -c
>
> When I copy/paste your data I get these results:
>
>2 Apple Jones
>1 Banana Herb
>4 Harvey Haney
>2 Sam Blue
>
> -- 
> Rod 
>
>
> -- 
> Rod 
>
> On Oct 6, 2020, at 1:23 PM, Howard  wrote:
>
> I have the following data (shown below). I want to count how many times 
> each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
> Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
> on how it can be done.
>
> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> 10:46:08 From Apple Jones : I'm doing good. How are you?
> 10:46:12 From Banana Herb : Good how are you!
> 10:46:18 From Sam Blue : I'm doing fine. How are you?
> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> 10:46:08 From Harvey Haney : I'm doing good. How are you?
> 10:46:12 From Apple Jones : Good how are you!
> 10:46:18 From Sam Blue : I'm doing fine. How are you?
> 10:45:57 From Harvey Haney : Good morning.
>
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+un...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>  
> 
> .
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/83b7baf3-4b7a-4c49-8e5a-697b57795215n%40googlegroups.com.


Re: Counting occurrences of names

2020-10-07 Thread Rod Buchanan

Click Text -> Run Unix Command… , then run this:

cut -d' ' -f3-4 | sort | uniq -c

When I copy/paste your data I get these results:

   2 Apple Jones
   1 Banana Herb
   4 Harvey Haney
   2 Sam Blue

-- 
Rod


-- 
Rod

> On Oct 6, 2020, at 1:23 PM, Howard  wrote:
> 
> I have the following data (shown below). I want to count how many times each 
> of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam Blue). 
> Can this be done in BBEdit? If not, I would appreciate suggestions on how it 
> can be done.
> 
> 10:45:57   From Harvey Haney : Good morning. How is everyone today?
> 10:46:08   From Apple Jones : I'm doing good. How are you?
> 10:46:12   From Banana Herb : Good how are you!
> 10:46:18   From Sam Blue : I'm doing fine. How are you?
> 10:45:57   From Harvey Haney : Good morning. How is everyone today?
> 10:46:08   From Harvey Haney : I'm doing good. How are you?
> 10:46:12   From Apple Jones : Good how are you!
> 10:46:18   From Sam Blue : I'm doing fine. How are you?
> 10:45:57   From Harvey Haney : Good morning.
> 
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "supp...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: 
> >
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>  
> .

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/9D38AFEB-5FCF-44C5-9CEE-EB16470EDCFB%40sofstats.com.


Re: Counting occurrences of names

2020-10-06 Thread Tom Robinson
But that pattern already finds lines ending with a question mark…

> On 2020-10-07, at 15:26, Howard  wrote:
> 
> How can I revise the pattern below so that I can also find all the lines that 
> end with a question mark?
> 
> Pattern: ^.*From (.*?) :.*$
> Replace: \1

If you mean only a question mark, then you have to ‘escape’ the question mark 
in the pattern with a backslash:

^.*From (.*?) :.*\?$

Cheers

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/9B2E4700-23F7-474F-BC73-6562D885DF17%40gmail.com.


Re: Counting occurrences of names

2020-10-06 Thread Howard
fletcher,

Thanks for the quick response. I used 

Pattern: ^.*From (.*?) :.*$ 
Replace: \1 

to create a file, then saved it as a text file, and imported that into R 
where I use the table function to get the output I needed.

Howard

On Tuesday, 6 October 2020 at 2:42:38 pm UTC-4 fletc...@cumuli.com wrote:

> I'd do this in two steps. First, isolate all the names using a 
> search/replace with the following pattern with "Grep" turned on. Use the 
> "Extract" button to create a new file.
>
> Pattern: ^.*From (.*?) :.*$
> Replace: \1
>
> That gives you a file with just the names in it on separate lines.
>
> Harvey Haney
> Apple Jones
> ...
>
> Save that to your desktop, e.g. to "names.txt" and then use the Terminal 
> to run this command on that file.
>
> cat ~/Desktop/names.txt | sort | uniq -c | bbedit
>
> That pipes your file through sort to put the lines in order, uniq -c to 
> replace each duplicated line with a count of how many duplicates there 
> were, and then pipes it back to a new file in BBEdit which you can save 
> wherever you want.
>
> [fletcher]
>
>
> > On Oct 6, 2020, at 11:23 AM, Howard  wrote:
> > 
> > I have the following data (shown below). I want to count how many times 
> each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
> Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
> on how it can be done.
> > 
> > 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> > 10:46:08 From Apple Jones : I'm doing good. How are you?
> > 10:46:12 From Banana Herb : Good how are you!
> > 10:46:18 From Sam Blue : I'm doing fine. How are you?
> > 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> > 10:46:08 From Harvey Haney : I'm doing good. How are you?
> > 10:46:12 From Apple Jones : Good how are you!
> > 10:46:18 From Sam Blue : I'm doing fine. How are you?
> > 10:45:57 From Harvey Haney : Good morning.
> > 
> > -- 
> > This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> > --- 
> > You received this message because you are subscribed to the Google 
> Groups "BBEdit Talk" group.
> > To unsubscribe from this group and stop receiving emails from it, send 
> an email to bbedit+un...@googlegroups.com.
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
> .
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/6dda8534-50da-488d-af8b-9916f77d20a3n%40googlegroups.com.


Re: Counting occurrences of names

2020-10-06 Thread Howard
Harvey,

What you suggested sounds great; however, I have no idea how to write or 
run a Node JS script.

Howard

On Tuesday, 6 October 2020 at 2:46:38 pm UTC-4 Harvey Pikelberger wrote:

> You would probably be better of trying to tackle this with a spreadsheet 
> and a couple of calculated columns.
> If it's an ongoing tally you want to maintain and / or the dataset it too 
> big for a spreadsheet, consider a database.
> But the fastest immediate solution: Use BBEdit not to do the calculation 
> but to scribble up a Node JS script.  From the looks of your dataset, it 
> would take a few minutes to write, and a few seconds to execute.
>
> On Oct 6, 2020, at 11:23 AM, Howard  wrote:
>
> I have the following data (shown below). I want to count how many times 
> each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
> Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
> on how it can be done.
>
> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> 10:46:08 From Apple Jones : I'm doing good. How are you?
> 10:46:12 From Banana Herb : Good how are you!
> 10:46:18 From Sam Blue : I'm doing fine. How are you?
> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> 10:46:08 From Harvey Haney : I'm doing good. How are you?
> 10:46:12 From Apple Jones : Good how are you!
> 10:46:18 From Sam Blue : I'm doing fine. How are you?
> 10:45:57 From Harvey Haney : Good morning.
>
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+un...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>  
> 
> .
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/0889dcd5-e909-4cda-ae61-c2d9465d0b7dn%40googlegroups.com.


Re: Counting occurrences of names

2020-10-06 Thread Howard
jajls,

I just tried your solution. It is very easy to use.

Thanks,
Howard

On Tuesday, 6 October 2020 at 3:44:13 pm UTC-4 jajls wrote:

> On 2020 Oct 6, at 14:42, Fletcher Sandbeck  wrote:
>
>
> I'd do this in two steps.
>
>
> Simplifying on Fletcher's solution, and staying in BBEdit:
>
> Use Find and Extract as Fletcher describes. Don't bother to save the file 
> or go into Terminal. Instead, use 
>
> Text > Run Unix Command…
>
> Enter the command:
>
> sort | uniq -c
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/8ada2094-d8ec-4ce1-8a1a-7fce3dd75391n%40googlegroups.com.


Re: Counting occurrences of names

2020-10-06 Thread Howard
How can I revise the pattern below so that I can also find all the lines 
that end with a question mark?

Pattern: ^.*From (.*?) :.*$ 
Replace: \1 

On Tuesday, 6 October 2020 at 2:42:38 pm UTC-4 fletc...@cumuli.com wrote:

> I'd do this in two steps. First, isolate all the names using a 
> search/replace with the following pattern with "Grep" turned on. Use the 
> "Extract" button to create a new file.
>
> Pattern: ^.*From (.*?) :.*$
> Replace: \1
>
> That gives you a file with just the names in it on separate lines.
>
> Harvey Haney
> Apple Jones
> ...
>
> Save that to your desktop, e.g. to "names.txt" and then use the Terminal 
> to run this command on that file.
>
> cat ~/Desktop/names.txt | sort | uniq -c | bbedit
>
> That pipes your file through sort to put the lines in order, uniq -c to 
> replace each duplicated line with a count of how many duplicates there 
> were, and then pipes it back to a new file in BBEdit which you can save 
> wherever you want.
>
> [fletcher]
>
>
> > On Oct 6, 2020, at 11:23 AM, Howard  wrote:
> > 
> > I have the following data (shown below). I want to count how many times 
> each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
> Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
> on how it can be done.
> > 
> > 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> > 10:46:08 From Apple Jones : I'm doing good. How are you?
> > 10:46:12 From Banana Herb : Good how are you!
> > 10:46:18 From Sam Blue : I'm doing fine. How are you?
> > 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> > 10:46:08 From Harvey Haney : I'm doing good. How are you?
> > 10:46:12 From Apple Jones : Good how are you!
> > 10:46:18 From Sam Blue : I'm doing fine. How are you?
> > 10:45:57 From Harvey Haney : Good morning.
> > 
> > -- 
> > This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> > --- 
> > You received this message because you are subscribed to the Google 
> Groups "BBEdit Talk" group.
> > To unsubscribe from this group and stop receiving emails from it, send 
> an email to bbedit+un...@googlegroups.com.
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
> .
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/7988d501-fc01-441c-b6c4-eb39aa9ae6cbn%40googlegroups.com.


Re: Counting occurrences of names

2020-10-06 Thread Howard
Hi Craig,

Thanks for the solution. I plan to try it.

Howard

On Tuesday, 6 October 2020 at 3:06:28 pm UTC-4 Craig W Johnson wrote:

> There may be a better way, but what I would do is open up a search window, 
> enter your target name in the find field, enter “\1\r” in the replace 
> field, and then hit extract. Every instance hit will then be on its own 
> line, and, presuming you have line numbering enabled, you could just check 
> the end line for the count.
>
> You could also just have the replace field be “\r” — you’ll still get the 
> count — but that’s less reassuring.
>
> If you only want occurrences within the “From” field, include that text in 
> your find query.
>
> Craig Johnson
> c...@remexpublishing.com
>
> On 6 Oct 2020, at 11:23, Howard wrote:
>
> I have the following data (shown below). I want to count how many times 
> each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
> Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
> on how it can be done.
>
> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> 10:46:08 From Apple Jones : I'm doing good. How are you?
> 10:46:12 From Banana Herb : Good how are you!
> 10:46:18 From Sam Blue : I'm doing fine. How are you?
> 10:45:57 From Harvey Haney : Good morning. How is everyone today?
> 10:46:08 From Harvey Haney : I'm doing good. How are you?
> 10:46:12 From Apple Jones : Good how are you!
> 10:46:18 From Sam Blue : I'm doing fine. How are you?
> 10:45:57 From Harvey Haney : Good morning.
>
> -- 
>
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "sup...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: <
> https://twitter.com/bbedit>
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+un...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>  
> 
> .
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/6234577f-c436-4ea3-ba7c-85c3f0a96847n%40googlegroups.com.


Re: Counting occurrences of names

2020-10-06 Thread Howard
Bruce Van Allen,

Thanks for the PERL solution. I'm new to PERL, but plan to try your 
solution. It looks quite interesting.

Howard

On Tuesday, 6 October 2020 at 3:45:51 pm UTC-4 Bruce Van Allen wrote:

> Hi Howard,
>
> Try a Text Filter.
>
> Here's one in Perl.
>
> ## Save in a file
> #!/usr/bin/perl
>
> use strict;
> use warnings;
> my %names;
> while (<>) {
> my $name; ($name) = /From ([^:]+?)\s+:/;
> $names{$name}++;
> }
>
> for my $n (sort keys %names) {
> printf qq{%s\t%d\n} => $n, $names{$n};
> }
> #
>
> Save this as a BBEdit Text Filter, with a recognizable name such 
> as count_names.pl; the standard location for Text Filters is:
> ~/Library/Application Support/BBEdit/Text Filters/
>
> Then you'll see it in BBEdit under Windows -> Palettes -> Text Filters.
>
> Just have your data file open and frontmost, then pick this from 
> the Text Filters palette; you can assign it a keyboard combo if 
> you want.
>
> You could also run it from the command line, with your data file 
> as the argument.
>
> Happy to explain the script if that helps.
>
> HTH
>
> On 10/6/20 at 11:23 AM, leadwi...@gmail.com (Howard) wrote:
>
> >I have the following data (shown below). I want to count how 
> >many times each of the four names appear (Harvey Haney, Apple 
> >Jones, Banana Herb, Sam Blue). Can this be done in BBEdit? If 
> >not, I would appreciate suggestions on how it can be done.
> >
> >10:45:57 From Harvey Haney : Good morning. How is everyone today?
> >10:46:08 From Apple Jones : I'm doing good. How are you?
> >10:46:12 From Banana Herb : Good how are you!
> >10:46:18 From Sam Blue : I'm doing fine. How are you?
> >10:45:57 From Harvey Haney : Good morning. How is everyone today?
> >10:46:08 From Harvey Haney : I'm doing good. How are you?
> >10:46:12 From Apple Jones : Good how are you!
> >10:46:18 From Sam Blue : I'm doing fine. How are you?
> >10:45:57 From Harvey Haney : Good morning.
> >
> -- 
>
> - Bruce
>
> _bruce__van_allen__santa_cruz__ca_
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/9f8df41e-39a5-4872-b7d7-ca3162598429n%40googlegroups.com.


Re: Counting occurrences of names

2020-10-06 Thread Bruce Van Allen

Hi Howard,

Try a Text Filter.

Here's one in Perl.

## Save in a file
#!/usr/bin/perl

use strict;
use warnings;
my %names;
while (<>) {
my $name; ($name) = /From ([^:]+?)\s+:/;
$names{$name}++;
}

for my $n (sort keys %names) {
printf qq{%s\t%d\n} => $n, $names{$n};
}
#

Save this as a BBEdit Text Filter, with a recognizable name such 
as count_names.pl; the standard location for Text Filters is:

~/Library/Application Support/BBEdit/Text Filters/

Then you'll see  it in BBEdit under Windows -> Palettes -> Text Filters.

Just have your data file open and frontmost, then pick this from 
the Text Filters palette; you can assign it a keyboard combo if 
you want.


You could also run it from the command line, with your data file 
as the argument.


Happy to explain the script if that helps.

HTH

On 10/6/20 at 11:23 AM, leadwithlo...@gmail.com (Howard) wrote:

I have the following data (shown below). I want to count how 
many times each of the four names appear (Harvey Haney, Apple 
Jones, Banana Herb, Sam Blue). Can this be done in BBEdit? If 
not, I would appreciate suggestions on how it can be done.


10:45:57 From Harvey Haney : Good morning. How is everyone today?
10:46:08 From Apple Jones : I'm doing good. How are you?
10:46:12 From Banana Herb : Good how are you!
10:46:18 From Sam Blue : I'm doing fine. How are you?
10:45:57 From Harvey Haney : Good morning. How is everyone today?
10:46:08 From Harvey Haney : I'm doing good. How are you?
10:46:12 From Apple Jones : Good how are you!
10:46:18 From Sam Blue : I'm doing fine. How are you?
10:45:57 From Harvey Haney : Good morning.


--

  - Bruce

_bruce__van_allen__santa_cruz__ca_

--
This is the BBEdit Talk public discussion group. If you have a feature request or need 
technical support, please email "supp...@barebones.com" rather than posting here. 
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups "BBEdit Talk" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/r480Ps-10146i-D180823581C54870884A66021AC1C89B%40Forest.local.


Re: Counting occurrences of names

2020-10-06 Thread 'Jeffrey Jones' via BBEdit Talk
On 2020 Oct 6, at 14:42, Fletcher Sandbeck  wrote:
> 
> I'd do this in two steps.

Simplifying on Fletcher's solution, and staying in BBEdit:

Use Find and Extract as Fletcher describes. Don't bother to save the file or go 
into Terminal. Instead, use 

Text > Run Unix Command…

Enter the command:

sort | uniq -c

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/2F9E0DA5-7FD1-4A94-B7DC-F799DE3DD441%40me.com.


Re: Counting occurrences of names

2020-10-06 Thread Craig W. Johnson
There may be a better way, but what I would do is open up a search 
window, enter your target name in the find field, enter “\1\r” in 
the replace field, and then hit extract. Every instance hit will then be 
on its own line, and, presuming you have line numbering enabled, you 
could just check the end line for the count.


You could also just have the replace field be “\r” — you’ll 
still get the count — but that’s less reassuring.


If you only want occurrences within the “From” field, include that 
text in your find query.


Craig Johnson





On 6 Oct 2020, at 11:23, Howard wrote:

I have the following data (shown below). I want to count how many 
times
each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, 
Sam
Blue). Can this be done in BBEdit? If not, I would appreciate 
suggestions

on how it can be done.

10:45:57 From Harvey Haney : Good morning. How is everyone today?
10:46:08 From Apple Jones : I'm doing good. How are you?
10:46:12 From Banana Herb : Good how are you!
10:46:18 From Sam Blue : I'm doing fine. How are you?
10:45:57 From Harvey Haney : Good morning. How is everyone today?
10:46:08 From Harvey Haney : I'm doing good. How are you?
10:46:12 From Apple Jones : Good how are you!
10:46:18 From Sam Blue : I'm doing fine. How are you?
10:45:57 From Harvey Haney : Good morning.

--
This is the BBEdit Talk public discussion group. If you have a feature 
request or need technical support, please email 
"supp...@barebones.com" rather than posting here. Follow @bbedit on 
Twitter: 

---
You received this message because you are subscribed to the Google 
Groups "BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com.



--
This is the BBEdit Talk public discussion group. If you have a feature request or need 
technical support, please email "supp...@barebones.com" rather than posting here. 
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups "BBEdit Talk" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/8C3E0F2B-2173-4748-A61D-830813EB8765%40well.com.


Re: Counting occurrences of names

2020-10-06 Thread MediaMouth
You would probably be better of trying to tackle this with a spreadsheet and a 
couple of calculated columns.
If it's an ongoing tally you want to maintain and / or the dataset it too big 
for a spreadsheet, consider a database.
But the fastest immediate solution: Use BBEdit not to do the calculation but to 
scribble up a Node JS script.  From the looks of your dataset, it would take a 
few minutes to write, and a few seconds to execute.

> On Oct 6, 2020, at 11:23 AM, Howard  wrote:
> 
> I have the following data (shown below). I want to count how many times each 
> of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam Blue). 
> Can this be done in BBEdit? If not, I would appreciate suggestions on how it 
> can be done.
> 
> 10:45:57   From Harvey Haney : Good morning. How is everyone today?
> 10:46:08   From Apple Jones : I'm doing good. How are you?
> 10:46:12   From Banana Herb : Good how are you!
> 10:46:18   From Sam Blue : I'm doing fine. How are you?
> 10:45:57   From Harvey Haney : Good morning. How is everyone today?
> 10:46:08   From Harvey Haney : I'm doing good. How are you?
> 10:46:12   From Apple Jones : Good how are you!
> 10:46:18   From Sam Blue : I'm doing fine. How are you?
> 10:45:57   From Harvey Haney : Good morning.
> 
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "supp...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: 
> >
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com
>  
> .

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/B553E55D-CF74-417A-84D5-ABA0C2947CE8%40gmail.com.


Re: Counting occurrences of names

2020-10-06 Thread Fletcher Sandbeck
I'd do this in two steps. First, isolate all the names using a search/replace 
with the following pattern with "Grep" turned on. Use the "Extract" button to 
create a new file.

Pattern: ^.*From (.*?) :.*$
Replace: \1

That gives you a file with just the names in it on separate lines.

Harvey Haney
Apple Jones
...

Save that to your desktop, e.g. to "names.txt" and then use the Terminal to run 
this command on that file.

cat ~/Desktop/names.txt  | sort | uniq -c | bbedit

That pipes your file through sort to put the lines in order, uniq -c to replace 
each duplicated line with a count of how many duplicates there were, and then 
pipes it back to a new file in BBEdit which you can save wherever you want.

[fletcher]


> On Oct 6, 2020, at 11:23 AM, Howard  wrote:
> 
> I have the following data (shown below). I want to count how many times each 
> of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam Blue). 
> Can this be done in BBEdit? If not, I would appreciate suggestions on how it 
> can be done.
> 
> 10:45:57   From Harvey Haney : Good morning. How is everyone today?
> 10:46:08   From Apple Jones : I'm doing good. How are you?
> 10:46:12   From Banana Herb : Good how are you!
> 10:46:18   From Sam Blue : I'm doing fine. How are you?
> 10:45:57   From Harvey Haney : Good morning. How is everyone today?
> 10:46:08   From Harvey Haney : I'm doing good. How are you?
> 10:46:12   From Apple Jones : Good how are you!
> 10:46:18   From Sam Blue : I'm doing fine. How are you?
> 10:45:57   From Harvey Haney : Good morning.
> 
> -- 
> This is the BBEdit Talk public discussion group. If you have a feature 
> request or need technical support, please email "supp...@barebones.com" 
> rather than posting here. Follow @bbedit on Twitter: 
> 
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BBEdit Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to bbedit+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com.

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/82D5BE7E-AE45-41FF-990D-21B34D130CD4%40cumuli.com.


Counting occurrences of names

2020-10-06 Thread Howard
I have the following data (shown below). I want to count how many times 
each of the four names appear (Harvey Haney, Apple Jones, Banana Herb, Sam 
Blue). Can this be done in BBEdit? If not, I would appreciate suggestions 
on how it can be done.

10:45:57 From Harvey Haney : Good morning. How is everyone today?
10:46:08 From Apple Jones : I'm doing good. How are you?
10:46:12 From Banana Herb : Good how are you!
10:46:18 From Sam Blue : I'm doing fine. How are you?
10:45:57 From Harvey Haney : Good morning. How is everyone today?
10:46:08 From Harvey Haney : I'm doing good. How are you?
10:46:12 From Apple Jones : Good how are you!
10:46:18 From Sam Blue : I'm doing fine. How are you?
10:45:57 From Harvey Haney : Good morning.

-- 
This is the BBEdit Talk public discussion group. If you have a feature request 
or need technical support, please email "supp...@barebones.com" rather than 
posting here. Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bbedit/379b202c-463e-4d7c-8a26-af63ab83d0aan%40googlegroups.com.