hello
i am using bash script to find all php shell scripts
grep -RPnDskip "(base64_decode) *\(" /home/domain/public_html >> /home/1.txt
and this is the output
/home/domain/public_html/qaqa.php:12:$tkl=base64_decode($tkl);
is there any way so i can delete all output file automatically?
i mean when the shell script find the word "base64_decode" in "qaqa.php", it will delete the file from the server.
i am using bash script to find all php shell scripts
grep -RPnDskip "(base64_decode) *\(" /home/domain/public_html >> /home/1.txt
and this is the output
/home/domain/public_html/qaqa.php:12:$tkl=base64_decode($tkl);
is there any way so i can delete all output file automatically?
i mean when the shell script find the word "base64_decode" in "qaqa.php", it will delete the file from the server.