标签: linux bash file text sed
我想知道如何用sed删除多个html文档的前196行。 我的目录结构如下:
答案 0 :(得分:3)
find /rootdir/ -name index.html -exec sed -i '1,196d' {} \;