From f71987d04407c621f5b44bc232b3946e3a8991bd Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 19:06:45 -0400 Subject: [PATCH] More IFS-in-array finagling --- hash-files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash-files b/hash-files index 62ab707..1463b58 100755 --- a/hash-files +++ b/hash-files @@ -42,7 +42,7 @@ mdls_per_file () { IFS=$old_IFS done old_IFS=$IFS - IFS=',';printf '%s' $mdls_properties;IFS=$old_IFS + IFS=',';printf '%s' ${mdls_properties[*]};IFS=$old_IFS }