#!/usr/bin/env bash
# Desc: Copies random audio files
# Usage: bk-copy-rand-music.sh [dir SOURCE] [dir DEST] [int DURATION]
-# Version: 0.0.2
+# Version: 0.0.3
declare -Ag appRollCall # Associative array for storing app status
declare -Ag fileRollCall # Associative array for storing file status
if [[ $n -gt $max_loops ]]; then die "ERROR:Too many loops:$n"; fi;
done;
+ n=0; # Initialize loop counter
# Copy files in list_copy to dir_dest;
for key in "${!list_copy[@]}"; do
value="${list_copy[$key]}";
try cp "$key" "$path_output" && yell "NOTICE:Copied ($value seconds): $key ";
#yell "DEBUG:Copied $file_basename to $dur_dest.";
+ ## Append log
+ path_log_output="$dir_dest"/COPY.log;
+ if [[ $n -le 0 ]]; then
+ echo "fingerprint","duration","original_path" >> "$path_log_output";
+ else
+ echo "$fingerprint","$value","$key" >> "$path_log_output";
+ fi;
+
+ ((n++));
unset file_basename path_output
done;