Search results

  1. B

    Remove script

    Thanks for the improvement. fortunately this block is at the beginning of files. it is progressing little by little.
  2. B

    Remove script

    I found a solution - find all files vim **/*.html 1) i enter :bnext until i found file containing code 2)going to the top and start recording a macro, enter q 3)I press dd multiples times for deleting the 183 lines 4)I stop macro, pressing q again 5)i save file :w 6)i go the next file :bnext...
  3. B

    Remove script

    Thanks for saving my life. Everything is clean now. I have processed hundreds of files. My fingers hurt. It took me a while to understand, but everything is working. I still have few files to process. i use this code : vim *.html Is it possible to select files and files in subdirectories with...
  4. B

    Remove script

    Thanks guys, the real thing is that i have this script in all my files . There are php files and other types of files. I had not made a backup on the server. My site is blocked by a pop-up. I've been looking for solutions for weeks. Maybe I could have solved the problem if it was a line of code...
  5. B

    Remove script

    here
  6. B

    Remove script

    Hello, I have a website. there is a javascript code duplicated in many files. I want to remove this script. But i don't know how to do it with sed command <script> window.onload = function() { setTimeout(() => { document.querySelector('.start').classList.add('active'); }, 3000)...
Top