#!/bin/bash

for x in `seq 1 9`;
do
    for y in `seq 1 9`;
    do

        ./ds9_as_rgb.sh ../../rerun/tutorial/deepCoadd/ $x $y
    done
done
