gpt4 book ai didi

linux - 从 bash 解析信息

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:57:04 25 4
gpt4 key购买 nike

我正在尝试从 Ubuntu 上的 bash 脚本中解析出某些信息

我让一个 bash 脚本每 x 秒执行一次,它确实写了:

永久列表

该命令的响应如下所示:

info:    Forever processes running
data: uid command script forever pid logfile uptime
data: [0] _1b2 /usr/bin/nodejs /home/ubuntu/node/server.js 28968 28970 /root/.forever/_1b2.log 0:0:17:17.233

我想解析出日志文件的位置 /root/.forever/_1b2.log

有什么想法可以用 bash 实现吗?

最佳答案

解决此问题的许多 awk 变体中的两个:

# most basic
command | awk 'NR==3{ print $8 }' data


# a little bit more robust:
command | awk '$1=="data:" && $2=="[0]" { print $8 }' data
# ^^^^^^^^^
# here I filter on the "[0]" text, but depending your needs
# you might want to use $3=="_1b2" or $4=="/usr/bin/nodejs"

关于linux - 从 bash 解析信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24982169/

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