📌  相关文章
📜  删除每行文件末尾的空格 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:32.301000             🧑  作者: Mango

代码示例1
Use either one of both next commands with sed 's/to_replace/replace/':
sed 's/ *$//' file
sed 's/[[:blank:]]*$//' file