For loop exit

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support For loop exit
# 1  
Old 03-29-2012
For loop exit

Below for loop not exiting. Can someone help?

Code:
JBOSS_INST_ARGS=01 02

if [ "$JBOSS_CMD_TYPE" = "start" ]; then
	for i in $JBOSS_INST_ARGS; do
			
		/u/jboss-6.1.0.Final/bin/jboss_init_wise$i.sh start;
	done


Last edited by Scrutinizer; 03-29-2012 at 06:25 AM.. Reason: Please use [code] tags [/code]
# 2  
Old 03-29-2012
Sound silly - but have you remembered to add a final fi to close the if statement.

Also, try using braces for $i:

/u/jboss-6.1.0.Final/bin/jboss_init_wise${i}.sh start;
# 3  
Old 03-29-2012
Code:
JBOSS_INST_ARGS=01 02

if [ "$JBOSS_CMD_TYPE" = "start" ]; then
for i in $JBOSS_INST_ARGS; do

/u/jboss-6.1.0.Final/bin/jboss_init_wise$i.sh start;
done
fi

i missed to add fi in the post, but it contains in actual script.

Last edited by Scrutinizer; 03-29-2012 at 06:26 AM.. Reason: Please use [code] tags [/code]
# 4  
Old 03-29-2012
Also, JBOSS_INST_ARGS="01 02"
# 5  
Old 03-29-2012
Have you tried putting diagnostic echo statements in the script to see if the script gets as far as the second iteration?
Quote:
/u/jboss-6.1.0.Final/bin/jboss_init_wise$i.sh start;
What's in this script?
If it's a daemon, perhaps it needs starting as:
Code:
nohup /u/jboss-6.1.0.Final/bin/jboss_init_wise$i.sh start &

# 6  
Old 03-29-2012
No. Its doesn't exit the loop even after the changes.
# 7  
Old 03-29-2012
Test the loop by just calling a pwd and make sure the loop exits:

Code:
if [ "$JBOSS_CMD_TYPE" = "start" ]; then
  for i in $JBOSS_INST_ARGS; do
     pwd
  done
fi

If this succeeds, then you need to investigate the script that it is calling - is it exiting? Try running it outside the for loop and see if it hangs.

Last edited by methyl; 03-29-2012 at 08:51 AM.. Reason: please use code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Using exit in For Loop - Is this acceptable

Hi Folks - Here is a for loop I've created and I just wanted to see if this was okay practice: for M in NAME1 NAME1 NAME3 do echo "Executing MaxL:" $M >>${_LOGFILE} 2>&1 . ${_STARTMAXLPATH}startmaxl.sh ${_MAINPATH}${_MAXLPATH}$M.mxl _RC=$? if then ... (7 Replies)
Discussion started by: SIMMS7400
7 Replies

2. Shell Programming and Scripting

Strange exit of while loop

This code is used to check for duplicate ip and hostnames in an /etc/hosts file CENTRAL is path to /etc/hosts AWK =awk #check CENTRAL for duplicate ips or hostnames# grep -v "^#" $CENTRAL | $AWK '{ print $1, $2; }' | \ while read ip hostname do if... (5 Replies)
Discussion started by: trimike
5 Replies

3. Shell Programming and Scripting

Loop exit control

Hi I would like to exit the loop below on <Enter> even if it sleeps. Is it possible? while true do my_procedure; sleep 60 done Thanks (7 Replies)
Discussion started by: zam
7 Replies

4. Shell Programming and Scripting

Exit from loop

hi, how to exit from "if" loop?actually i have mutliple "if" conditions, i have to exit from each "if" loop,if it is true...:confused: Please suggest me... (3 Replies)
Discussion started by: sreelu
3 Replies

5. Shell Programming and Scripting

Exit from loop only when selected

I am trying to get my program to exit when the answer to my question is positive, if I am asking if the answers are correct in the entries that the user inputted and the user says no how do I then have it exit? If they say everything is correct then it continue into the program, I think I am close... (2 Replies)
Discussion started by: gumbi17
2 Replies

6. Shell Programming and Scripting

exit out of a while loop with error

im running a while loop as a file watcher, with incremental counter on the retries..however when the retries reach it's limit i want it exit and echo and error and stop the batch. Im not sure the code i have will do that already... Here is what i have that works: #!/usr/bin/ksh count=0... (2 Replies)
Discussion started by: sigh2010
2 Replies

7. Shell Programming and Scripting

how to exit a while true loop

Hi guys, I'm new to unix but loving it!! BUT this is driving me nuts as i can't work out the best way to do it. I have a while true loop that i use to monitor something. For my own reasons in ths script i have disabled the CTRL C using the trap command. But i want to put in a option to exit... (5 Replies)
Discussion started by: Noob e
5 Replies

8. Shell Programming and Scripting

Method to exit a for loop

Hi All, Can someone let me know how i can exit a for loop without exiting the script itself .... will the break statement work .... please help .... -Regards (2 Replies)
Discussion started by: Rohini Vijay
2 Replies

9. Shell Programming and Scripting

while loop exit

i wrote a while script as part of a huge program. this script, once picked, begins to output data to the person using it. pretty easy, as the person doesn't have to keep typing commands to get the output that the while loop automatically throws out. now, the thing is, while this while-script... (3 Replies)
Discussion started by: Terrible
3 Replies

10. Shell Programming and Scripting

csh exit while loop on keystroke

#!/bin/csh I'm using a `while(1)` loop to dispaly real-time information about various files on my system, and I use ^C to exit it when needed. I was hoping there was a way to exit the script on a normal keystroke such as "q". Can someone point me in the right direction? I'm willing to use a... (7 Replies)
Discussion started by: seg
7 Replies
Login or Register to Ask a Question