From 018d832456cb03d3c77c17d4832d25226245bc89 Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 18:41:50 -0400 Subject: [PATCH] Further clarification of mdls_properties list. --- hash-files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash-files b/hash-files index e47400e..6324d66 100755 --- a/hash-files +++ b/hash-files @@ -76,7 +76,7 @@ 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) - echo "mdls_properties: $mdls_properties" + echo -e "mdls_properties: \n=======================\n$mdls_properties" # write_per_file $file $hash $mdls_properties done