回答編集履歴

1

コマンド例の間違い修正(「grep」が入ってなかった)

2020/06/30 06:37

投稿

hidezzz
hidezzz

スコア1248

test CHANGED
@@ -8,6 +8,6 @@
8
8
 
9
9
  ```terminal
10
10
 
11
- $ find ./ -type f -print0 | xargs -0 -E 'Test3'
11
+ $ find ./ -type f -print0 | xargs -0 grep -E 'Test3'
12
12
 
13
13
  ```