From 879b7f28f773e48b0f25832f9245f8fc13c3c737 Mon Sep 17 00:00:00 2001 From: Jensfrank Date: Sat, 29 Jun 2024 20:15:52 +0800 Subject: [PATCH] Update nodeloc_vps_autotest_yabs.sh --- nodeloc_vps_autotest_yabs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodeloc_vps_autotest_yabs.sh b/nodeloc_vps_autotest_yabs.sh index 41c55dc..4504676 100644 --- a/nodeloc_vps_autotest_yabs.sh +++ b/nodeloc_vps_autotest_yabs.sh @@ -105,8 +105,8 @@ run_and_capture() { # 创建一个临时文件来存储完整输出 local temp_file=$(mktemp) - # 运行 YABS 测试,同时将输出显示在终端和保存到临时文件 - wget -qO- yabs.sh | bash | tee "$temp_file" + # 运行 YABS 测试,使用 stdbuf 禁用缓冲,同时将输出显示在终端和保存到临时文件 + wget -qO- yabs.sh | stdbuf -oL bash | tee "$temp_file" # 读取完整结果,但排除最后一行("按回车键返回主菜单...") sed '$d' "$temp_file"