gpt4 book ai didi

parsing - 为文件中的匹配行添加前缀

转载 作者:行者123 更新时间:2023-12-01 12:57:34 25 4
gpt4 key购买 nike

我已经尝试通过以下方法自己完成此操作:

for i in $(grep something toprefix.log); do sed -i -e 's/^/prefix/' $i; done

首先,为我的愚蠢表示歉意 - 我知道以上内容行不通!

基本上,我想使用 grep、sed 或 awk 将前缀应用于日志文件中的匹配行。

prefix-matching
prefix-matching
not-matching
prefix-matching
not-matching
not-matching
prefix-matching

提前致谢。

最佳答案

$ sed -i '/something/s/^/prefix/' toprefix.log

编辑:详情见http://www.gnu.org/software/sed/manual/html_node/Addresses.html

编辑:删除了“<”,因为使用了“-i”。

编辑制表符是\t,所以

$ sed -i '/something/s/^/prefix\t/' toprefix.log

添加 prefix 和一个制表符。

关于parsing - 为文件中的匹配行添加前缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8893048/

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