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

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

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