8,000 (プラス) レコード (html ファイル) で検索と置換を実行したいのですが、置換する文字列にスペースが含まれていることが問題です。
タグが閉じる</head>
前に Google アナリティクスを挿入できるように、 のインスタンスを持つすべてのファイルを検索したいと考えています。<head>
私のGoogle Analyticsは次のようになります。
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XX-XXXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
結果を見つけ</head>
た後、次のようになります。
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XX-XXXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
私のサーバーでは、FTPとSSHにアクセスできます。それらを高速かつ軽量に置き換えるには、どのアプローチを使用する必要がありますか?
ありがとうございました。