aboutsummaryrefslogtreecommitdiff
path: root/challenge-110
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-110')
-rw-r--r--challenge-110/abigail/bash/ch-2.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-110/abigail/bash/ch-2.sh b/challenge-110/abigail/bash/ch-2.sh
index 38dd956446..43f07e31b4 100644
--- a/challenge-110/abigail/bash/ch-2.sh
+++ b/challenge-110/abigail/bash/ch-2.sh
@@ -14,7 +14,7 @@ declare -a out
#
# Read in the data, add each field to the appropriate output string
#
-IFS=","
+IFS=,
while read -a chunks
do for ((i = 0; i < ${#chunks[@]}; i ++))
do out[$i]=${out[$i]}${chunks[$i]},