More IFS-in-array finagling

This commit is contained in:
Mike Holloway 2022-03-26 19:06:45 -04:00
parent 528bb7def0
commit f71987d044

View File

@ -42,7 +42,7 @@ mdls_per_file () {
IFS=$old_IFS
done
old_IFS=$IFS
IFS=',';printf '%s' $mdls_properties;IFS=$old_IFS
IFS=',';printf '%s' ${mdls_properties[*]};IFS=$old_IFS
}