From 191d69060307387c1c3b2aa6b4d938e48406486f Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 18:34:55 -0400 Subject: [PATCH] Investigating main for loop and evocation of mdls_per_file --- hash-files | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hash-files b/hash-files index e16a51b..62e6a56 100755 --- a/hash-files +++ b/hash-files @@ -77,7 +77,8 @@ IFS=',';echo "${csv_columns[*]}";IFS=$'\n' for file in $(find $Working_Fullpath -maxdepth 1 -type f); do hash=$($md5_bin $file | awk '{ print $4 }') mdls_properties=$(mdls_per_file $file) - write_per_file $file $hash $mdls_properties + echo "mdls_properties: $mdls_properties" +# write_per_file $file $hash $mdls_properties done unset IFS