Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Grep

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
debigokan
Posts: 48
Joined: 2016-09-03 15:54

Grep

#1 Post by debigokan »

I want to extract the same or repeating lines as Grep.

For example:
4.2.2.4
4.2.2.4
4.2.2.4
1.1.1.1
2.2.2.2
1.1.1.1
3.3.3.3
4.2.2.4

It must be just one address from an ip address. How can I do that ?

peter_irich
Posts: 1405
Joined: 2009-09-10 20:15
Location: Saint-Petersburg, Russian Federation
Been thanked: 11 times

Re: Grep

#2 Post by peter_irich »

If these addresses are in file "name", try

Code: Select all

sort name | uniq -d
Peter.

debigokan
Posts: 48
Joined: 2016-09-03 15:54

Re: Grep

#3 Post by debigokan »

very thanks...

Post Reply