gpt4 book ai didi

file - 从文件末尾删除换行符

转载 作者:行者123 更新时间:2023-12-04 02:42:07 24 4
gpt4 key购买 nike

我想删除换行符 \n仅从 unix 中的文件末尾
例如

abc  
def
ghi


输出应该是
abc  
def
ghi

在文件末尾不应该有一个 \n

最佳答案

你可以:

perl -pe 'chomp if eof' file1 > file2

例子:
$ cat file1
abc
def
ghi
$ perl -pe 'chomp if eof' file1 > file2
$ cat file2
abc
def
ghi$

关于file - 从文件末尾删除换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8635240/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com