From fb583285e5ee5a461a25c0574e274a4e77148771 Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 19:07:41 -0400 Subject: [PATCH] Even more IFS-array finagling --- hash-files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash-files b/hash-files index 1463b58..38e87d3 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 }