Why is sed not recognizing \t as a tab?

前端 未结 11 1574
伪装坚强ぢ
伪装坚强ぢ 2020-11-29 19:54
sed \"s/\\(.*\\)/\\t\\1/\" $filename > $sedTmpFile && mv $sedTmpFile $filename

I am expecting this sed script to insert a <

11条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 20:47

    Use $(echo '\t'). You'll need quotes around the pattern.

    Eg. To remove a tab:

    sed "s/$(echo '\t')//"
    

提交回复
热议问题