gpt4 book ai didi

json - 将 ps aux 转换为 json

转载 作者:太空宇宙 更新时间:2023-11-04 04:57:17 45 4
gpt4 key购买 nike

我尝试在不使用 Perl 或 Python 的情况下将 ps aux 的输出转换为 Json 格式!对于这些我读过有关jq的内容。但我成功地将命令行输出转换为 json。

如何将简单的 ps aux 转换为 Json?

最佳答案

 ps aux | awk '
BEGIN { ORS = ""; print " [ "}
{ printf "%s{\"user\": \"%s\", \"pid\": \"%s\", \"cpu\": \"%s\"}",
separator, $1, $2, $3
separator = ", "
}
END { print " ] " }';

只需从 ps aux 输出中调整您需要的列即可。

关于json - 将 ps aux 转换为 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42855490/

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