From 3ac7a299174c423994592d09ea06d5e31e2977dc Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 18:43:44 -0400 Subject: [PATCH] Teasing out duplicate key... --- hash-files | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hash-files b/hash-files index 6324d66..46ab571 100755 --- a/hash-files +++ b/hash-files @@ -66,6 +66,9 @@ temp_csv_file=$($mktemp_bin) ## Initialize column names csv_columns=( "File Path" "File Hash" ) ## Populate Columns from keys of interest +echo "Keys of interest:" +echo ${keys_of_interest[@]} +echo "===========================================" for key in ${keys_of_interest[@]};do csv_columns+=( ${keys_of_interest[key]} ) done