私はこのようなコードを持っています:
<html>
<body>
<div>some normal html code</div>
<!--f1930e-->
some javascript code goes here...
<!--/f1930e-->
some other html....
</body>
</html>
の一部を削除するにはどうすればよいですか?
<!--f1930e-->
some javascript code goes here...
<!--/f1930e-->
次のようになります。
<html>
<body>
<div>some normal html code</div>
some other html....
</body>
</html>
私のコマンドは次のようなものです:
grep -lr -e 'f1930e' * | xargs sed -e 's/<!--f1930e-->.*<!--\/f1930e-->//'
それは機能していません。