From 4576a926c25d76aa9499669d5a0bb7d7091b6821 Mon Sep 17 00:00:00 2001 From: adminroot Date: Tue, 4 Nov 2025 08:25:37 -0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20src/alias.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/alias.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/alias.txt b/src/alias.txt index e6811a1..9190e5c 100644 --- a/src/alias.txt +++ b/src/alias.txt @@ -198,13 +198,14 @@ function wdt() { testfile_size=2048 echo -e "\n使用默认值: ${testfile_size}MB" fi - echo "------------" - echo "写入速度如下" + echo "-------------" + echo "写入速度如下:" time dd if=/dev/zero of=./testfile bs=1M count=${testfile_size} oflag=direct - echo "------------" - echo "读取速度如下" + echo "-------------" + echo "读取速度如下:" time dd if=./testfile of=/dev/null bs=1M rm ./testfile + echo "-------------" echo "测试文件已删除" }