Why is sed not recognizing \t as a tab?

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

    TAB=$(printf '\t')
    sed "s/${TAB}//g" input_file
    

    It works for me on Red Hat, which will remove tabs from the input file.

提交回复
热议问题