質問編集履歴
1
動作環境を実行結果を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
指定のディレクトリ(サブディレクトリ含む)から条件に一致するファイル名を出して処理をしていくスクリプトを作りたい。
|
2
2
|
|
3
|
-
findとforを組み合わせて作りましたが、空白スペースが入っているようなファイルが存在するとうまく処理ができない問題があります。
|
3
|
+
findとforを組み合わせて作りましたが、空白スペースが入っているようなファイル(例:aaa aaa.txt)が存在するとうまく処理ができない問題があります。
|
4
|
+
|
5
|
+
|
4
6
|
|
5
7
|
```
|
6
8
|
|
@@ -23,3 +25,99 @@
|
|
23
25
|
|
24
26
|
|
25
27
|
コピペミスではないと思いますが、使え無さそうなので他に実現する方法はありませんでしょうか?
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
---
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
追記:参考にしたページのものは動作するという回答を頂いておりますが、やはりこちらの環境では動作しないように思えます。
|
36
|
+
|
37
|
+
DockerのCentOSを使っておりそれが問題なのかどうかがわかりませんが、テスト用に作成したスクリプトと環境を記述しておきます。
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
環境
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
```
|
46
|
+
|
47
|
+
[root@bbec28a1ab2f ~]# uname -a
|
48
|
+
|
49
|
+
Linux bbec28a1ab2f 5.4.39-linuxkit #1 SMP Fri May 8 23:03:06 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
[root@bbec28a1ab2f ~]# bash --version
|
54
|
+
|
55
|
+
GNU bash, version 4.4.19(1)-release (x86_64-redhat-linux-gnu)
|
56
|
+
|
57
|
+
Copyright (C) 2016 Free Software Foundation, Inc.
|
58
|
+
|
59
|
+
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
This is free software; you are free to change and redistribute it.
|
64
|
+
|
65
|
+
There is NO WARRANTY, to the extent permitted by law.
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
[root@bbec28a1ab2f ~]# find --version
|
70
|
+
|
71
|
+
find (GNU findutils) 4.6.0
|
72
|
+
|
73
|
+
Copyright (C) 2015 Free Software Foundation, Inc.
|
74
|
+
|
75
|
+
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
|
76
|
+
|
77
|
+
This is free software: you are free to change and redistribute it.
|
78
|
+
|
79
|
+
There is NO WARRANTY, to the extent permitted by law.
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
Written by Eric B. Decker, James Youngman, and Kevin Dalley.
|
84
|
+
|
85
|
+
Features enabled: D_TYPE O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS(FTS_CWDFD) CBO(level=2)
|
86
|
+
|
87
|
+
```
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
動作テスト用スクリプト
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
```
|
96
|
+
|
97
|
+
#!/bin/bash
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
while read f; do
|
102
|
+
|
103
|
+
echo "${file}"
|
104
|
+
|
105
|
+
done < <(find . -type f)
|
106
|
+
|
107
|
+
```
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
実行結果
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
```
|
116
|
+
|
117
|
+
# sh test.sh
|
118
|
+
|
119
|
+
test.sh: line 5: syntax error near unexpected token `<'
|
120
|
+
|
121
|
+
test.sh: line 5: `done < <(find . -type f)'
|
122
|
+
|
123
|
+
```
|