gpt4 book ai didi

linux - Bash:检查脚本是否已经在此计算机上运行

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

我有一个运行多个实验的 bash 脚本(实现时间等),但如果它已经运行,我不想运行相同的实验。

实验已经运行,当且仅当同一台计算机产生了一个包含 280 行的输出文件。

我现在要做的是(针对所有实验):

# Remove the prefix
tmp=${3#*/}
# Remove the suffix
instance=${tmp%.*}
# Set the output path
output_path=statistics/experiment-$1-$2-${instance}.csv
if [ -f ${output_path} ];
then
# The output file exists, check if it contains 280 lines
LC=`wc -l ${output_path} | cut -f1 -d' '`
if [[ ${LC} == 280 ]]; then
# It did, thus we are done
echo "$(date -R) [SKIPPING ] Instance already processed for ${1} (${2}) on ${3} - Skipping experiment!"
# Do not do anything else
exit 0
fi
# The experiment was stopped prematurely, rerun it
echo "$(date -R) [RERUNNING] Instance not fully processed for ${1} (${2}) on ${3} - Rerunning experiment! (${LC}/280 runs)"
# Remove old file
rm -f ${output_path}
fi
# Run the experiment
echo "$(date -R) [RUNNING ] Running experiment for ${1} (${2}) on ${3}"
start=$(date +%s)
./bin/Experiment --algorithm $1 --dbms $2 --instance_path $3 > ${output_path}
total=$(($(date +%s)-${start}))
echo "$(date -R) [FINISHED ] Finished experiment for ${1} (${2}) on ${3} in ${total} seconds."

但这不会检查实验是否在同一台计算机上运行。我最初的想法是使用 ip link show eth0 | awk '/ether/{print $2}' 获取计算机的 MAC 地址,然后将输出文件存储在目录中,例如statistics/ff:ff:ff:ff:ff/experiment1.csv,但是(假设安装了 ip)是否保证上述命令会返回 MAC 地址?还是有其他方法可以从 bash 脚本中唯一标识一台计算机?

最佳答案

使用dmidecode。它检查系统并返回制造商设置的序列号。您有多种选择。您可以使用 dmidecode -t 2 返回如下内容:

           Handle 0x0002, DMI type 2, 8 bytes.  Base Board Information
Manufacturer: Intel
Product Name: C440GX+
Version: 727281-001
Serial Number: INCY92700942

在上面的示例中,您可以看到主板的序列号,但看不到系统。为此,您可以使用 dmidecode -t 1。解析所有这些可能很麻烦,所以只需通过 sha256sum 将其通过管道传输并获得一个简单的哈希。

使用 dmidecode -s system-uuid 也很有用。

关于linux - Bash:检查脚本是否已经在此计算机上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35269437/

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