删除字符


#删除'%' 
  
cat compare.txt |sed 's/\%//g' 
  

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

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