#!/bin/bash

# Define the server and base path
server="root@157.159.160.224"
base_path="/data1/artemis/html/jct/doc_end_user/documents"
destination="."

# List of directory names with numbers and underscores
directories=(
 
"31_San_Diego"  
"23_San_Diego"  
"16_San_Jose"   
"17_San_Jose"
"8_San_Jose"
)

# Loop through each directory and transfer .zip files
for dir in "${directories[@]}"; do
    scp "$server:$base_path/$dir/wg11/*.zip" "$destination"
done
