![]() |
|
|
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 |
| I need help with arrays in C Shell | domain | Shell Programming and Scripting | 5 | 11-19-2008 08:17 AM |
| Accessing shell arrays in awk | Zombywoof | Shell Programming and Scripting | 1 | 09-10-2008 06:13 PM |
| shell / awk arrays | lochraven | Shell Programming and Scripting | 8 | 08-21-2008 01:18 PM |
| how to use arrays in c shell | hgphsf | Shell Programming and Scripting | 6 | 12-14-2007 02:03 PM |
| arrays in shell script | melanie_pfefer | Shell Programming and Scripting | 3 | 05-18-2007 09:36 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Accessing arrays in shell scripts
Hi All,
I have an array in my script. For example, array=(file1.xml,file1-summary.xml,file2.xml,file2-summary.xml,file3.xml,file3-summary.xml); I am accessing the elements of the array by using the following code. len=${#array[*]}; while [ $j -lt $len ]; do echo "${array[$j]}" done I want to print the only files like file1.xml,file2.xml etc. I don't want to print file1-summary.xml,file2-summary.xml etc. For that I am uisng the following piece of code. len=${#array[*]}; while [ $j -lt $len ]; do if [ ${array[$j]} != *.summary.xml ]then; echo "${array[$j]}" fi let j++; done But this code prints all the files including the files like file1-summary.xml etc. Can anyone help me on this.... Thanks in advance... Anand. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|