diff --git a/Nlbench_beta.sh b/Nlbench_beta.sh index 3fc9388..4c68cdf 100644 --- a/Nlbench_beta.sh +++ b/Nlbench_beta.sh @@ -239,28 +239,14 @@ run_script() { ;; # Geekbench5 2) - echo -e "运行${YELLOW}Geekbench 5...${NC}" - bash <(curl -sL gb5.top) | tee "$temp_file" - - # 过滤和清理输出 - sed -i 's/\x1B\[[0-9;]*[JKmsu]//g' "$temp_file" # 删除ANSI转义字符 - sed -i 's/\x1B\[.*?[mGKH]//g' "$temp_file" # 删除更多类型的ANSI转义字符 - sed -i 's/\r//' "$temp_file" # 删除回车符 - sed -i '/^$/d' "$temp_file" # 删除空行 - - # 保留最后一次出现的特定标头信息及其之后的内容 - awk ' - BEGIN { keep=0 } - /# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #/ { keep=NR } - { lines[NR] = $0 } - END { - if (keep != 0) { - for (i=keep; i<=NR; i++) { - print lines[i] - } - } - } - ' "$temp_file" > "${output_file}_gb5" + echo -e "运行${YELLOW}Geekbench 5...${NC}" + bash <(curl -sL gb5.top) | tee "$temp_file" + sed -i 's/\x1B\[[0-9;]*[JKmsu]//g' "$temp_file" + sed -i 's/\x1B\[.*?[mGKH]//g' "$temp_file" + sed -i 's/\r//' "$temp_file" + sed -i '/^$/d' "$temp_file" + sed -i -n '/当前时间:/,${p}' "$temp_file" + cp "$temp_file" "${output_file}_gb5" ;; # 融合怪