From 0f74c5fc26e57520bb5769f8898031b0d8db459c Mon Sep 17 00:00:00 2001 From: Jensfrank Date: Thu, 11 Jul 2024 21:08:49 +0800 Subject: [PATCH] Update Nlbench_beta.sh --- Nlbench_beta.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Nlbench_beta.sh b/Nlbench_beta.sh index 9a06354..890f729 100644 --- a/Nlbench_beta.sh +++ b/Nlbench_beta.sh @@ -281,15 +281,18 @@ generate_markdown_output() { local base_output_file=$1 local final_output_file="${base_output_file}.md" local sections=("YABS" "融合怪" "IP质量" "流媒体" "响应" "多线程测速" "单线程测速" "iperf3" "回程路由") + local file_suffixes=("yabs" "fusion" "ip_quality" "streaming" "response" "multi_thread" "single_thread" "iperf3" "route") echo "[tabs]" > "$final_output_file" - for section in "${sections[@]}"; do - echo "[tab=\"${section}\"]" >> "$final_output_file" + for i in "${!sections[@]}"; do + section="${sections[$i]}" + suffix="${file_suffixes[$i]}" + echo "[tab=\"$section\"]" >> "$final_output_file" echo "\`\`\`" >> "$final_output_file" - if [ -f "${base_output_file}_${section}" ]; then - cat "${base_output_file}_${section}" >> "$final_output_file" - rm "${base_output_file}_${section}" + if [ -f "${base_output_file}_${suffix}" ]; then + cat "${base_output_file}_${suffix}" >> "$final_output_file" + rm "${base_output_file}_${suffix}" fi echo "\`\`\`" >> "$final_output_file" echo "[/tab]" >> "$final_output_file"