gpt4 book ai didi

linux - 如何在 linux (cent os) 中通过 sed 编辑特定行并替换文本

转载 作者:太空宇宙 更新时间:2023-11-04 09:22:48 25 4
gpt4 key购买 nike

Width                    : 1 280 pixelsHeight                   : 720 pixels

I'm working on a bash script and need to filter video on the bases of resolution.Like If Width is greater than equal to 1280 then HDelseNon HD

I'm using mediainfo to make and save info in txt file.

cat /home/The.txt | grep "Width"  |  awk -F ':' '{print $2}' | grep -o "[0-9]*"

这个的输出是

1280

这是因为1280之间有一个“”

对于高度,如果我 grep 高度就没问题。

无论如何我可以编辑宽度线并使所有整数都像

110012801272

来自

1 1101 2801 272

最佳答案

我建议使用:

grep "Width" /home/The.txt | tr -cd '0-9\n'

关于linux - 如何在 linux (cent os) 中通过 sed 编辑特定行并替换文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40060535/

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