linux sed学习札记
linux sed学习笔记
删除字符
#删除'%'
cat compare.txt |sed 's/\%//g'
#删除行首空格
sed 's/^[ \t]*//g'
#删除行尾空格
sed 's/[ \t]*$//g'
cat compare.txt |sed 's/\%//g'
#删除行首空格
sed 's/^[ \t]*//g'
#删除行尾空格
sed 's/[ \t]*$//g'