回答編集履歴
2
冗長を削除
test
CHANGED
@@ -6,4 +6,12 @@
|
|
6
6
|
|
7
7
|
```
|
8
8
|
|
9
|
+
以下修正
|
10
|
+
|
11
|
+
```
|
12
|
+
|
13
|
+
find . -type f -exec grep -E "test.c" {} \;
|
14
|
+
|
15
|
+
```
|
16
|
+
|
9
17
|
以上。
|
1
微調整
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
```
|
4
4
|
|
5
|
-
find . -type f -exec grep "
|
5
|
+
find . -type f -exec grep -E "test.c" /dev/null {} \; | awk -F ':' '{print $2}'
|
6
6
|
|
7
7
|
```
|
8
8
|
|