![]() |
I have a huge list of urls, need app to remove duplicates
Any good free apps that will help remove duplicate urls? I have a list of thousands of urls.
|
import them into a database with a index field then you can export to a clean list.
|
I'm sure somebody here could program that for real cheap for ya
|
Import it into MS Access, keep distinct rows and you're done.
WG |
or if you are in some sort of Unix environment (or Linux)...
cat urls.txt | sort | uniq > uniqueurls.txt |
Quote:
sort -u urls.txt > uniqueurls.txt |
Quote:
|
Free Bookmark (favorites) manager
found on google in approx 23 secs... I'm starting to think GFY stands for "Googled For You" :eyecrazy |
Thanks guys, found a free program called raptor and worked great :)
|
learn to use a shell. its an amazing tool.
|
$sliced = explode("\n", $pizza);
$new_array = array_unique($sliced); echo implode("\n",$new_array); |
All times are GMT -7. The time now is 11:21 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123