Here's what I'd like to do:
pass a x*1 array from one script to another via the command line.
Eg. Say I've created a dynamic graphing script and I need to tell it which columns to plot. Instead of putting yCol1=3&yCol2=7 etc... in the command line (then having to code to determine how many yCol? variables were passed), I'd like to pass it as an array, like yCol=[[3][7]...]
The question is, how?
I'd appreciate any help solving this dilemma.