回答編集履歴
2
追記
test
CHANGED
@@ -19,3 +19,13 @@
|
|
19
19
|
$ find . -type d -exec ls {} \;
|
20
20
|
|
21
21
|
```
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
find + xargsだとこういう手もあるらしい
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
$ find . -type d -print0 | xargs -0 ls -l
|
30
|
+
|
31
|
+
```
|
1
追記
test
CHANGED
@@ -8,6 +8,14 @@
|
|
8
8
|
|
9
9
|
$ls "/aaa/bbb/ccc/ddd/abcd01 - コピー"
|
10
10
|
|
11
|
+
```
|
11
12
|
|
12
13
|
|
14
|
+
|
15
|
+
findはexecを使えばエスケープいらないみたいですよ
|
16
|
+
|
13
17
|
```
|
18
|
+
|
19
|
+
$ find . -type d -exec ls {} \;
|
20
|
+
|
21
|
+
```
|