Tips tagged uniq


5

Tip #460   Random IP addresses

nmap -iR 20 -sL -n|awk '{print $2}'|grep '^[0-9]'|uniq Read more »

0

Tip #259   Ghetto lsof when you don

You might want to get rid of the awk, sort, uniq and grep depending on how much info you need.

Read more »

0

Tip #246   Dealing with duplicate lines

You can use the 'uniq' command to handle duplicate lines in a file:

Read more »