From e6e16d19cd4335bee8ac4102eaeebcb27bff89c3 Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 15:20:10 -0400 Subject: [PATCH] Whoops, wrong brackets; changed '{}' to '()' --- hash-files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash-files b/hash-files index 914f0e4..0adc8a0 100755 --- a/hash-files +++ b/hash-files @@ -1,6 +1,6 @@ #!/usr/bin/env bash log_file=/var/log/hash-files.log -keys_of_interest={"kMDItemFSCreationDate" "kMDItemFSName"} +keys_of_interest=("kMDItemFSCreationDate" "kMDItemFSName") md5_bin=$(which md5sum) mktemp_bin=$(which mktemp) DateTimeStamp=$(date +\%D_\%T)