# Super simple command generator
dates = ['20140503', '20140504', '20140507', '20140512', '20140515', '20140516', '20140518', '20140519', '20140523','20140524', '20140526', '20140528', '20140529', '20140602', '20140605', '20140606', '20140608', '20140611', '20140612']
types = ['dBZe', 'doppler', 'spec'] 
server = "ppantina@karl:/karldata/helms/data/reproc/IPHEX/peterTest/plots/EXRAD_NADIR"  # UPDATE THIS
local_base = "./IPHEX/QLOOK_EXRAD"  # CHANGE THIS TO YOUR DESIRED PATH

print("Copy and paste these commands one by one:")
print()

for date in dates:
    for file_type in types:
        print(f"rsync -av --include='*{file_type}*' --exclude='*' {server}/{date}/ {local_base}/{date}{file_type}/")