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 > Shell Programming and Scripting
.
google unix.com



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
Creating an array to hold posix thread ids: Only dynamic array works kmehta High Level Programming 4 09-21-2008 08:24 PM
split and making an array inside another array dcfargo Shell Programming and Scripting 2 08-06-2008 10:07 AM
Array inside an array manas_ranjan UNIX for Advanced & Expert Users 5 06-10-2008 02:25 PM
I need help with an array! djsal Shell Programming and Scripting 1 11-28-2007 11:26 AM
create array holding characters from sring then echo array. rorey_breaker Shell Programming and Scripting 5 09-28-2007 08:42 AM

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 10-13-2008
drkelly76 drkelly76 is offline
Registered User
  
 

Join Date: Oct 2008
Posts: 1
csh array help!!

I'm trying call the first item in the array then put it in a loop to call the next items in order.


set $p = (port-1, port-2, port-3, port-4, exit)

<sourcePort>daughtercard:$P[1]</sourcePort>

if ($p == "exit") then
break
else ($p >> 1)

I know the above code isn't correct. I'm just not sure how to get $p to change ports in order until exit.

thanks in advance for your help.

DK
  #2 (permalink)  
Old 10-13-2008
cfajohnson's Avatar
cfajohnson cfajohnson is online now Forum Advisor  
Shell programmer, author
  
 

Join Date: Mar 2007
Location: Toronto, Canada
Posts: 2,318

You may have difficulty getting help with csh scripts, because it is not very good for scripting. See these articles for reasons why that is so:
Top Ten Reasons not to use the C shell
C shell problems
Csh Programming Considered Harmful
In a Bourne-type shell, you might do this:

Code:
for port in port-1 port-2 port-3 port-4
do
  printf "<sourcePort>daughtercard:%s</sourcePort>\n" "$port"
done
Or even:

Code:
printf "<sourcePort>daughtercard:%s</sourcePort>\n" \
       port-1 port-2 port-3 port-4
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 10:05 PM.


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