#!/bin/bash i=0 while [ $i -lt 2 ] do j=0 while [ $j -lt 59 ] do echo "$i:$j" j=$(($j+1)) done i=$(($i+1)) done