Re: [OT] Bash help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



On Wed, Oct 25, 2017 at 9:41 AM, Mark Haney <mark.haney@xxxxxxxxxxx> wrote:
> On 10/25/2017 12:33 PM, Robert Arkiletian wrote:
>>
>> here is a python solution
>> #!/usr/bin/python
>> #python 2 (did not check if it works)
>> f=open('yourfilename')
>> D={}
>> for line in f:
>>      email,num = line.split()
>>      if email in D:

>>          D[email] = D[email] + int(num)

>>      else:

>>          D[email] = int(num)

>> f.close()
>> for key in D:
>>      print key, D[key]
>> _______________________________________________
>
> That gets me closer, I think.  It's concatenating the number of messages,
> but it's a start. Thanks.
>
>
> --
>
> Mark Haney
> Network Engineer at NeoNova
> 919-460-3330 option 1
> mark.haney@xxxxxxxxxxx
> www.neonova.net
>
> _______________________________________________
> CentOS mailing list
> CentOS@xxxxxxxxxx
> https://lists.centos.org/mailman/listinfo/centos
_______________________________________________
CentOS mailing list
CentOS@xxxxxxxxxx
https://lists.centos.org/mailman/listinfo/centos



[Index of Archives]     [CentOS]     [CentOS Announce]     [CentOS Development]     [CentOS ARM Devel]     [CentOS Docs]     [CentOS Virtualization]     [Carrier Grade Linux]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Linux USB]


  Powered by Linux