gpt4 book ai didi

linux - 使用 sed 时未终止的地址正则表达式

转载 作者:IT王子 更新时间:2023-10-29 00:49:28 25 4
gpt4 key购买 nike

我正在使用以下命令,但在 linux 中运行该命令时出现以下错误。

sed -n '/^[2015/01/01 03:46/,/^[2015/01/01 03:47/p' < Input.txt
sed: -e expression #1, char 42: unterminated address regex

请帮我解决这个问题。

最佳答案

您需要对 [ 进行转义,否则它会认为它是一个组的开始,并在您的数据中转义为 /

sed -n '/^\[2015\/01\/01 03:46/,/^\[2015\/01\/01 03:47/p' Input.txt

或者(感谢 nu11p01n73R)

sed -n '\|^\[2015/01/01 03:46|,\|^\[2015/01/01 03:47|p' Input.txt

关于linux - 使用 sed 时未终止的地址正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27729772/

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