![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Rearrange array elements-Pls help | tj23 | Shell Programming and Scripting | 4 | 06-20-2008 10:29 AM |
| Perl - New line in array elements | bperl | Shell Programming and Scripting | 4 | 04-03-2008 10:56 PM |
| To return the elements of array | Sudhakar333 | Shell Programming and Scripting | 5 | 08-06-2007 03:20 PM |
| How to hold string array in shell scripts | brajesh | Shell Programming and Scripting | 3 | 03-27-2007 10:14 AM |
| how to return an array of elements from oracle to shell script | satyakiran | Shell Programming and Scripting | 3 | 08-02-2005 10:57 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Displaying Array Elements in Shell Scripts
Hi All,
I am using the following piece of script to print all the array elements in a script by name compare.sh: 31 len=${#array[*]}; 32 j=0; 33 #echo "The length of the array is : $len" 34 while [$j -lt $len]; do 35 temp=${array[$j]} 36 echo "$temp" 37 let $j++ 38 done But I am getting the following error. ksh: ./compare.sh[38]: [0: not found I couldn't understand what is happening... Can anyone help me on this..... Thanks in advance Anand. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|