IFS work for comma delimited arrays

rewrite-2022-03-26
Mike Holloway 2 years ago
parent 16a6db49d9
commit 528bb7def0
  1. 3
      hash-files

@ -41,7 +41,8 @@ mdls_per_file () {
fi
IFS=$old_IFS
done
printf '%s' $mdls_properties
old_IFS=$IFS
IFS=',';printf '%s' $mdls_properties;IFS=$old_IFS
}

Loading…
Cancel
Save