gpt4 book ai didi

linux - shell Linux : grep exact sentence with NULL character

转载 作者:太空狗 更新时间:2023-10-29 12:15:10 25 4
gpt4 key购买 nike

我有一个类似的文件

key\0value\n
akey\0value\n
key2\0value\n

我必须创建一个将单词作为参数的脚本。我必须返回具有与参数完全相同的键的每一行。

我试过了

grep -aF "$key\x0"

但是grep好像不理解\x0(\0结果一样)。此外,我必须检查该行是否以“$key\0”开头

我只能使用 sed grep 和 tr 以及其他非加工命令

最佳答案

要将\0 考虑在内,请尝试:

  grep -Pa "^key\x0"

它对我有用。

关于linux - shell Linux : grep exact sentence with NULL character,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27769375/

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