The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Array Help in shell scripting learnbash Shell Programming and Scripting 0 03-09-2008 08:18 AM
HELP me PLS... Simple Scripting! liezer Shell Programming and Scripting 2 09-14-2006 09:50 AM
simple scripting question gennaro Shell Programming and Scripting 3 06-17-2005 02:49 AM
Help with simple scripting actions Nads Shell Programming and Scripting 5 04-28-2005 11:42 PM
any tutorials on simple scripting? xyyz UNIX for Dummies Questions & Answers 3 03-13-2003 01:31 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-01-2006
ravikirankethe ravikirankethe is offline
Registered User
  
 

Join Date: Oct 2006
Location: NewYork
Posts: 21
Simple Array in Ksh Scripting

Ksh Scripting

Can some one give me a simple example of array operations using ksh.

For Ex:
week_array = {Sunday Monday Tuesday Wednesday Thursday Friday Saturday}

I want to assign and retrieve and print them along with their index.

I am looking for the o/p like:
0 Sunday
1 Monday
2 Tuesday
3 Wednesday
4 Thursday
5 Friday
6 Saturday
  #2 (permalink)  
Old 11-01-2006
Glenn Arndt's Avatar
Glenn Arndt Glenn Arndt is offline Forum Advisor  
Anomalous Lurker
  
 

Join Date: Feb 2006
Location: Indianapolis, IN
Posts: 255
I don't know if there's any way to retrieve the index/subscript directly. You'll probably have to count and increment it yourself:
Code:
set -A week_array Sunday Monday Tuesday Wednesday Thursday Friday Saturday
integer idx=0

for day in ${week_array[*]}
 do
  print $idx $day
  idx=$idx+1
done
You can also set the array variables this way:
Code:
week_array[0]=Sunday
week_array[1]=Monday
week_array[2]=Tuesday
week_array[3]=Wednesday
week_array[4]=Thursday
week_array[5]=Friday
week_array[6]=Saturday
  #3 (permalink)  
Old 11-01-2006
ravikirankethe ravikirankethe is offline
Registered User
  
 

Join Date: Oct 2006
Location: NewYork
Posts: 21
Thats cool Glenn. I am getting confused with different shells.
Sponsored Links
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 08:25 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0