Extracting values from array elements

2001-08-29 Thread Dean W. Paulson
I have the following array: 1 2 3 4 5 6 7 8 9 Is there a way to assign individual values of each array element (1 2 3 4 5 6 7 8 9) to seperate variables so that $var1 = 1 $var2 = 2 . . . $var9 = 9 Dean Paulson

solved: Extracting values from array elements

2001-08-29 Thread Dean W. Paulson
I have solved my ealier question. Thanks to those who responded. the problem was: I have an input file which contains n rows with 3 items in each row: 1 2 3 a b c 4 5 6 The script output needs to take the items from each row and print them as: v1=1, v2=2, v3=3 v1=a, v2=b, v3=c v1=4, v2=5, v3=6