Nov 30, 2023 If you have a lot of txt files, and want extract specific url ,ex:ample abc.com We can get lot of duplicate lines. You can use command cat in linux to filter: cat * txt | sort | uniq | grep -a abc.com >> result.txt Click to expand...
If you have a lot of txt files, and want extract specific url ,ex:ample abc.com We can get lot of duplicate lines. You can use command cat in linux to filter: cat * txt | sort | uniq | grep -a abc.com >> result.txt