#!/bin/sh rm -f params.txt for x in `seq 1 10` ; do for y in `seq 1 10` ; do echo "$x $y" >> params.txt done done