1.查看隐藏字符
[root@xx input]# cat -A xx.txt |head -n 10 123^Iaaa$ 123^Iaaa$
2.查看隐藏字符对照表
man ascii
3、替换
sed -e "s/t/,/g" xx.txt > yy.txt
4、查看
cat -A yy.txt
5.所有的ascii字符都可以用unicode表示
如缩写是SOH的字符用unicode表示u0001, 其它的对应可以在网上查找ascii对应unicode关系

1.查看隐藏字符
[root@xx input]# cat -A xx.txt |head -n 10 123^Iaaa$ 123^Iaaa$
2.查看隐藏字符对照表
man ascii
3、替换
sed -e "s/t/,/g" xx.txt > yy.txt
4、查看
cat -A yy.txt
5.所有的ascii字符都可以用unicode表示
如缩写是SOH的字符用unicode表示u0001, 其它的对应可以在网上查找ascii对应unicode关系