Why is sed not recognizing \t as a tab?

前端 未结 11 1591
伪装坚强ぢ
伪装坚强ぢ 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:33

    Instead of BSD sed, i use perl:

    ct@MBA45:~$ python -c "print('\t\t\thi')" |perl -0777pe "s/\t/ /g"
       hi
    

提交回复
热议问题