gpt4 book ai didi

linux - 用于查找硬件信息的 Bash 脚本给出 "Memory Fault"

转载 作者:太空宇宙 更新时间:2023-11-04 03:49:59 25 4
gpt4 key购买 nike

我正在尝试在工作中编写一个脚本来查找集群中的硬件信息。我正在尝试运行下面的脚本,它抛出“内存故障”错误。node.txt 文件接收集群中相关节点的名称。有人可以帮忙吗?非常感谢!

#!/bin/bash
function ping()
{
ping -c 1 "$host" >> $results
}
function hw_info_cpu()
{
hwinfo --cpu "$host" >> $results
}
function hw_info_gpu()
{
hwinfo --gfxcard "$host" >> $results
}
function os_info()
{
lsb_release -a "$host" >> $results
}

results=res.txt

while read -r host; do
ping "$host $results"
hw_info_cpu "$host $results"
hw_info_gpu "$host $result"
os_info "$host $result"
done < nodes.txt

最佳答案

“ping”函数正在递归地调用自身。

将“ping”函数重命名为“myping”

关于linux - 用于查找硬件信息的 Bash 脚本给出 "Memory Fault",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26651246/

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