日期:2014-05-16  浏览次数:20823 次

linux sed学习笔记
删除字符
#删除'%'
cat compare.txt |sed 's/\%//g'

#删除行首空格
sed 's/^[ \t]*//g'

#删除行尾空格
sed 's/[ \t]*$//g'