#!/bin/bash

# Generate choices for a combobox

for i in {1..50}
do
    #use this one for the primary search field
    #echo '        "column '$i'"    "-cols '$i'"'

    #use this one for the secondary and other search fields
    echo '        "column '$i'"    ",'$i'"'

done
