Как добавить строку во всех HTML с Linux
sed -i -e '\@</body>@i\New stuff' *.html
Disgusted Deer
sed -i -e '\@</body>@i\New stuff' *.html
sed -i -e '/<!-- insert here -->/a\New stuff' *.html