#!/bin/sh for x in `seq 1 10` ; do for y in `seq 1 10` ; do echo "$x $y" done done