Update nodeloc_vps_autotest_trace.sh

This commit is contained in:
Jensfrank 2024-06-28 01:08:18 +08:00 committed by GitHub
parent 37a5bdc593
commit 31d50de94f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,7 +148,7 @@ $processed_autotrace_result
[/tabs]" [/tabs]"
echo "$result" > results.md echo "$result" > results.md
echo -e "${GREEN}结果已保存到 results.md 文件中。${NC}" echo -e "${YELLOW}结果已保存到 results.md 文件中。${NC}"
} }
# 主函数 # 主函数
@ -156,9 +156,9 @@ main() {
install_dependencies install_dependencies
show_welcome show_welcome
run_all_tests run_all_tests
echo -e "${GREEN}所有测试完成。点击屏幕任意位置复制结果${NC}" echo -e "${YELLOW}所有测试完成可到results.md复制到Nodeloc使用${NC}"
read -n 1 -s read -n 1 -s
echo "最终结果文件内容:" >&2 echo "最终测试结果如下:" >&2
cat results.md >&2 cat results.md >&2
} }