the script createCollectionsForAllGroups.sh doesn't accept group names that have spaces.
|
for groupname in ${group_names[@]}; do |
i tried to add quotes:
for groupname in "${group_names[@]}"; do
but then the variable "groupname" will contain the whole list of arrays.
the script createCollectionsForAllGroups.sh doesn't accept group names that have spaces.
admin-scripts/Bash Scripts/createCollectionsForAllGroups.sh
Line 48 in e75c610
i tried to add quotes:
for groupname in "${group_names[@]}"; dobut then the variable "groupname" will contain the whole list of arrays.