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

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...