Remove or filter entries from file
I am trying to remove entries from list file based on a specific word found in the url. Dont know why it is not working or may be I am doing something wrong.
What are we supposed to enter in the mask column?
I have a target list in a file and the list is around 1 million links. I want to remove all the links from the file that have a word "comment" in the domain or path . Is this possible using the filter entries option. ? Please let me know. Thanks @Sven
I have a target list in a file and the list is around 1 million links. I want to remove all the links from the file that have a word "comment" in the domain or path . Is this possible using the filter entries option. ? Please let me know. Thanks @Sven
Comments
IE:
http://www.regular-expressions.info/
Alternately, download Cygwin or run the process on a Linux box. You can accomplish the same thing (Much faster, given the size of your file) using SED and CAT
IE:
cat sourcefile.txt | sed '/wordtoremove/d' >> outputfile.txt<br>
https://www.dropbox.com/s/vndmws7fcvdrsow/Animation.gif?dl=0
let me if it was clear or I need to make it again. Also please let me know what I doing wrong, Thanks