Forum Moderators: bakedjake
cat access_log ¦ grep /Apr/ ¦ grep multimedia This works fine.
But i want to filter out duplicates based on IPs, so i can get number of unique visitors.
So i add this:
cat access_log ¦ grep /Apr/ ¦ grep multimedia [b] ¦ uniq -w 15 -i [/b] But it simply will not give me unique lines based on the first 15 characters.
So whats the problem?
Thanks in advance.