On branch rewrite-2022-03-26

Your branch is up to date with 'origin/rewrite-2022-03-26'.

 Changes to be committed:
modified:   hash-files
	Change from two step (invoke, print) to one step (print
	invocation)
rewrite-2022-03-26
Mike Holloway 2 years ago
parent fb29201bcd
commit a889f1ff6f
  1. 6
      hash-files

@ -39,7 +39,7 @@ mdls_per_file () {
fi
IFS=$old_IFS
done
# IFS=',';echo "${mdls_properties[*]}";IFS=$old_IFS
IFS=',';echo "${mdls_properties[*]}";IFS=$old_IFS
}
@ -76,10 +76,10 @@ for file in $(find $Working_Fullpath -maxdepth 1 -type f); do
## Set our hash value
hash=$($md5_bin $file | awk '{ print $4 }')
## Set our mdls values
mdls_per_file $file
# Print csv row output
# "============= CSV Row =========="
echo "$file,$hash,$mdls_properties"
echo "$file,$hash,$(mdls_per_file $file)"
# write_per_file $file $hash $mdls_properties
done
} >> $temp_csv_file

Loading…
Cancel
Save