質問するログイン新規登録

回答編集履歴

1

内容の修正

2017/03/19 16:14

投稿

gorogoroIT
gorogoroIT

スコア447

answer CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  ```
5
- find . -name "*" -type f -print0 | xargs -0 -I {} sh -c 'echo {} ; cat {}'
5
+ find . -name "*" -type f -print0 | xargs -0 -I {} sh -c 'echo "{}" ; cat "{}"'
6
6
  ```
7
7
 
8
8
  ```