Url extractor tool.
by junomario from LinuxQuestions.org on (#5G36K)
Hi, Is there any url/link extractor command line tool or python program which can extract urls from text files by defining filter.
Currently I am relying on
Code:$ grep -E -o But for this you have to have good knowledge of regex.
There are many browser extensions easy-to-use like Link-Klipper for Chrome and Link Gopher addon for firefox which can extract urls even with providing small info, such as keyword "imgur".
And the extension automatically extract all links containing "imgur" word links from a source code. But the limitation is i cannot perform it on multiple text files in batch.
Here is a online tool built for same purpose.
https://www.text-filter.com/Extract-...List-Leads.htm
I can filter links by providing small info in "extract address containing this string"


Currently I am relying on
Code:$ grep -E -o But for this you have to have good knowledge of regex.
There are many browser extensions easy-to-use like Link-Klipper for Chrome and Link Gopher addon for firefox which can extract urls even with providing small info, such as keyword "imgur".
And the extension automatically extract all links containing "imgur" word links from a source code. But the limitation is i cannot perform it on multiple text files in batch.
Here is a online tool built for same purpose.
https://www.text-filter.com/Extract-...List-Leads.htm
I can filter links by providing small info in "extract address containing this string"