From a6b4c3f36a47c3173397b5445454126608dc3e91 Mon Sep 17 00:00:00 2001 From: leelx0912 Date: Wed, 24 Jul 2024 21:38:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20script-examples/code/ex01.?= =?UTF-8?q?sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script-examples/code/ex01.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-examples/code/ex01.sh b/script-examples/code/ex01.sh index 0ab1d4a..5a6eaff 100644 --- a/script-examples/code/ex01.sh +++ b/script-examples/code/ex01.sh @@ -2,7 +2,7 @@ # Description : 统计某个文件中的行数 -# 方法 1 : 优先推荐使用该方式进行统计函数 +# 方法 1 : 优先推荐使用该方式进行统计函数 sed -n '$=' hello.c # 方法 2 cat hello.c | wc -l