bash – 删除文件末尾的换行符

前端之家收集整理的这篇文章主要介绍了bash – 删除文件末尾的换行符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
删除所有换行符,可以说:
tr -d '\n' < days.txt
cat days.txt | tr -d '\n'

但是如何使用tr只删除文本文件末尾的换行符?

我不确定只指定最后一个.

利用以下事实:a)换行符在文件末尾,b)字符大小为1字节:使用truncate命令将文件缩小一个字节:
# a file with the word "test" in it,with a newline at the end (5 characters total)
$cat foo 
test

# a hex dump of foo shows the '\n' at the end (0a)
$xxd -p foo
746573740a

# and `stat` tells us the size of the file: 5 bytes (one for each character)
$stat -c '%s' foo
5

# so we can use `truncate` to set the file size to 4 bytes instead
$truncate -s 4 foo

# which will remove the newline at the end
$xxd -p foo
74657374
$cat foo
test$

您还可以将尺寸和数学转换为一行命令:

truncate -s $(($(stat -c '%s' foo)-1)) foo
原文链接:https://www.f2er.com/bash/386299.html

猜你在找的Bash相关文章