diff --git a/script-examples/code/ex01.sh b/script-examples/code/ex01.sh index 7dc3247..0ab1d4a 100644 --- a/script-examples/code/ex01.sh +++ b/script-examples/code/ex01.sh @@ -9,7 +9,7 @@ cat hello.c | wc -l # 方法 3 wc -l hello.c -# 关于方法2 和 方法3 的说明:最后一行必须是空格,不然获取的行数不准确 +# 关于方法2 和 方法3 的说明:最后一行必须是空格, 不然获取的行数不准确 # 方法 4 awk '{print NR}' hello.c | tail -n1 \ No newline at end of file