On branch parse-mdls

Your branch is up to date with 'origin/parse-mdls'.

 Changes to be committed:
modified:   hash-files
	Added array delimiter replacement for csv-formatted output
parse-mdls
Mike Holloway 2 years ago
parent 5b81d72b2b
commit fe2d738b42
  1. 2
      hash-files

@ -67,7 +67,7 @@ create_csv () {
for key in ${keys_of_interest[@]};do
csv_columns+=( ${keys_of_interest[key]} )
done
echo ${csv_columns[@]}
IFS=',';echo "${csv_columns[*]}";IFS=$'\n'
# for i in ${!list_of_files[@]}; do
# csv_array+=( ${list_of_files[i]},${list_of_hashes[i]} )
# done

Loading…
Cancel
Save