feat(user/bk-copy-rand-music):Log copied files orig paths
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 15 Feb 2022 16:08:18 +0000 (16:08 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 15 Feb 2022 16:08:18 +0000 (16:08 +0000)
user/bk-copy-rand-music.sh

index c4e568594aa42eccdaf3a03489376028a9f6208c..ea384fe722371fa1d27ca488313e51801fb4fcc4 100755 (executable)
@@ -1,7 +1,7 @@
 #!/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
@@ -452,6 +452,7 @@ main() {
        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]}";
@@ -472,6 +473,15 @@ main() {
        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;