Update nodeloc_vps_autotest_yabs.sh

This commit is contained in:
Jensfrank 2024-06-28 00:02:54 +08:00 committed by GitHub
parent f2638f3d97
commit cb05ef83a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -164,7 +164,7 @@ $yabs_result
[/tabs]" [/tabs]"
echo "$result" > results.md echo "$result" > results.md
echo -e "${GREEN}结果已保存到 results.md 文件中。${NC}" echo -e "${YELLOW}结果已保存到 results.md 文件中。${NC}"
} }
# 主函数 # 主函数
@ -172,9 +172,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
} }