您几乎明白了:
sed -e 's/^[ t]*//;s/[ t]*$//' a > c
此外,在的某些版本上
sed,还提供用于内联编辑的选项:
sed -i -e 's/^[ t]*//;s/[ t]*$//' a
欢迎分享,转载请注明来源:内存溢出
您几乎明白了:
sed -e 's/^[ t]*//;s/[ t]*$//' a > c
此外,在的某些版本上
sed,还提供用于内联编辑的选项:
sed -i -e 's/^[ t]*//;s/[ t]*$//' a
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)