Forum Kurallarını Okumak İçin Lütfen Tıklayınız .

Recently searched:

Filter Duplicate Line In Linux For Newbie Methods 

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
 

Users who are viewing this thread

Home Register
Top Bottom