From f52295c6ee2c7128166e1d7aef4e4f5a58df0ea6 Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 19:17:56 -0400 Subject: [PATCH] Adding echo in main to print rather than call.. whoops --- hash-files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash-files b/hash-files index 6a416c0..edfc61f 100755 --- a/hash-files +++ b/hash-files @@ -81,7 +81,7 @@ done ## Loop through files, writing to csv for file in $(find $Working_Fullpath -maxdepth 1 -type f); do hash=$($md5_bin $file | awk '{ print $4 }') - $(mdls_per_file $file) + echo $(mdls_per_file $file) # echo "============= CSV Row ==========" #echo "$file,$hash,$mdls_properties" # write_per_file $file $hash $mdls_properties