Re: need help: about remove space

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



Michel van Deventer wrote, On 04/30/2010 10:55 AM:
> Hi,
> 
> On Fri, 2010-04-30 at 07:46 -0700, adrian kok wrote:
>> Hi all
>>
>> I have big file as below 
>> and would like to know how many line eg: wc -l file
>> but can't figure out how to know
>>
>> If I type wc -l file, I only get the 1023 but it includes the space 
>> When I use cat file | tr -d "\r \n". it gives me "adrian alice......"
>> I need it as fileB and then wc -l fileB.
>>
> If those lines between the names are empty lines you might try :
> cat bigfile | egrep -v '^$' | wc -l
> 
> or if you want the names into a second file :
> cat bigfile | egrep -v '^$' > fileB
> 
> 	Regards,
> 
> 	Michel

Or if you don't mind loosing replicates:
cat bigfile |sort |uniq > fileB

-- 
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter
_______________________________________________
CentOS mailing list
CentOS@xxxxxxxxxx
http://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