Teasing out duplicate key...

This commit is contained in:
Mike Holloway 2022-03-26 18:43:44 -04:00
parent 018d832456
commit 3ac7a29917

View File

@ -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