标签: bash shell
如何循环浏览文件的每一行,并在bash $ {/' #include"' /" a"}中使用此命令中的该行? (我试图用该行中的其他内容替换包含)
答案 0 :(得分:1)
使用sed或awk替换你想要的东西。下面的示例文件中找到的所有#include字符串将替换为CustomTEXT。在这种情况下不需要循环。
sed -i 's/\#include/CustomTEXT/g' fileA