enable moving files

This commit is contained in:
Danilo Reyes 2024-07-16 16:47:34 -06:00
parent 588bc90008
commit 18abdbd0d8

View File

@ -182,7 +182,7 @@ for year_dir in "$base_dir"/*/; do
target_directory=$(echo "$line" | cut -d' ' -f4-) target_directory=$(echo "$line" | cut -d' ' -f4-)
target_path="$base_dir/$target_directory" target_path="$base_dir/$target_directory"
echo "$target_path" echo "$target_path"
# mkdir -p "$target_path" && mv "$photo" "$target_path/" mkdir -p "$target_path" && mv "$photo" "$target_path/"
fi fi
done <"$temp_file" done <"$temp_file"