From bdb4d0ba822188a4286dee09dfb63b65432df181 Mon Sep 17 00:00:00 2001 From: cnphpbb Date: Thu, 31 Jul 2025 05:22:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0run.sh=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E9=87=8D=E5=A4=8D=E8=BE=93=E5=87=BA=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将重复的三行相同输出修改为带有编号的不同输出,提高脚本输出的可读性和调试便利性 --- shell/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/run.sh b/shell/run.sh index fecd1fa..5324bc4 100644 --- a/shell/run.sh +++ b/shell/run.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -echo "run.sh" -echo "run.sh" -echo "run.sh" \ No newline at end of file +echo "run.sh 1" +echo "run.sh 2" +echo "run.sh 3"