回答編集履歴

1

追記

2021/02/15 10:02

投稿

otn
otn

スコア85893

test CHANGED
@@ -33,3 +33,33 @@
33
33
  ```
34
34
 
35
35
  ですかね。
36
+
37
+ #追記
38
+
39
+ 改善。パイプをリダイレクトに変更して、これで多分良いと思います。
40
+
41
+ ```Bash
42
+
43
+ if [[ $? -eq 0 ]]; then
44
+
45
+ while read data
46
+
47
+ do
48
+
49
+ column=(`echo "$data"`)
50
+
51
+ notificationMessage+="\n ch_customer_id = ${column[0]} count = ${column[1]}"
52
+
53
+ echo $notificationMessage ※1<<-- ここは予想通りに表示できる。
54
+
55
+ done <<<"${result}"
56
+
57
+ else
58
+
59
+ echo "db error."
60
+
61
+ exit 1
62
+
63
+ fi
64
+
65
+ ```