sed 's/查找/替换/g' Input
  • s:替换模式
  • g:全局模式(默认执行每一行第一次匹配到的位置)
cat a.txt | sed 's/com/cn/g'

a.txtcom全部替换为cn并输出