系统相关
首页 > 系统相关> > linux-编辑大文件的第一行和最后一行

linux-编辑大文件的第一行和最后一行

作者:互联网

我想在一个非常大的文件(〜500GB)中编辑第一行和最后一行.怎么办呢?例如,在第一行中,我有:

-flag </begin> 

我想省略“ -flag”.我尝试使用sed(如图所示)编辑第一行,但是我没有用:

sed -i '1s/-flag <begin>/<begin>/g' file.txt 

解决方法:

我想不出一种可以就地完成此操作的方法(我很想听到一个!)

几乎不是一线客,但您可以尝试一下:

# substitute the first line and exit
sed '1s/-flag \(.*\)/\1/;q' file > new        
# add the rest of the file (probably quicker than sed)
tail -n +2 file >> new    
# cut off the last line of the file
truncate -s $(( $(stat -c "%s" new) - $(tail -n 1 new | wc -c) )) new
# substitute the last line                             
tail -n 1 file | sed 's/-flag \(.*\)/\1/' >> new

假设您有一些工具(例如truncate),并且可以在shell中进行算术(我的shell是bash).

截断-s通过获取总文件大小stat -c“%s”与最后一行的长度(以字节为单位)之间的差来删除最后一行.

我不确定您要从最后一行删除的内容,但是我认为它与第一行相同(从行的开头删除-flag).

建议修改.

标签:sed,large-files,linux
来源: https://codeday.me/bug/20191121/2053263.html