Find a string in all files and create a list of files that contain that string in a text file Posted on February 16, 2017 by SEO Brisbane Search Tempo grep -r '64_decode' /home1/armytrai/public_html/ > SUSPECT-CODE.txt Read More
Find string an delete it Posted on February 16, 2017February 16, 2017 by SEO Brisbane Search Tempo find -type f -exec grep -l 'bad-string-to-delete' {} \; -exec sed -i 'bad-string-to-delete' {} \; Read More