gen_params.sh 101 B

12345678
  1. #!/bin/sh
  2. for x in `seq 1 10` ; do
  3. for y in `seq 1 10` ; do
  4. echo "$x $y"
  5. done
  6. done