Break the outer loop


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Break the outer loop
# 1  
Old 07-17-2013
Break the outer loop

Hi I'm comparing same files names which are in different folders .
The first for loop for the files in DAY1 folder and
the second for loop for the files in DAY2 folder .
the first IF condition is for checking whether the file names are equal
the second If condtion is for checking the content is same or not
if the content is same then remove all the files from DAY1 Folder at a time .
No need to loop around from then
So I've written the BREAK statement .
Code:
src_file="/home/etc/day1"
dst_file="/home/oetc/day2"
for i_day in $src_file/dfl*
  do
     for j_day in $dst_file/dfl*
        do
             if [ $i_day = $j_day ]
                then
                    if diff $i_day $j_day >/dev/null ; then
                        rm $src_file/dfl* 
                        break
                    fi
             fi
     done
done

Now the issue is the BREAK statement . How to terminate the main for loop if the 2nd IF condition is satisfied .

Thanks
# 2  
Old 07-17-2013
Set a variable and test it outside the second fi, or wherever needed.
# 3  
Old 07-17-2013
A quick example. Setting RUNNING to 0 will cause both loops to break, one after the other.

Code:
RUNNING=1

for X in 1 2 3
do
        for Y in 2 3 4
        do
                [ "$Y" -eq 3 ] && RUNNING=0

                [ "$RUNNING" -eq 1 ] || break
        done

        [ "$RUNNING" -eq 1 ] || break
done

# 4  
Old 07-17-2013
Alternatively:
Code:
src_file="/home/etc/day1"
dst_file="/home/oetc/day2"
unset BREAK
for i_day in $src_file/dfl*
  do
     for j_day in $dst_file/dfl*
        do
             if [ $i_day = $j_day ]
                then
                    if diff $i_day $j_day >/dev/null ; then
                        rm $src_file/dfl*
                        BREAK=break
                        break
                    fi
                    $BREAK
             fi
             $BREAK
     done
     $BREAK
done

break may also take a number argument.

Code:
...
                    if diff $i_day $j_day >/dev/null ; then
                        rm $src_file/dfl*
                        break 3
                    fi
...

These 2 Users Gave Thanks to Scott For This Post:
# 5  
Old 07-17-2013
I did not know that. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Break in for loop

in my python script i have loop like below: for item in itemlist: if <condition>: <code> else: <code> if <condition>: if <condition>: <code> else: for type in types: if... (1 Reply)
Discussion started by: ctrld
1 Replies

2. Shell Programming and Scripting

Basic FOR loop with break

Oracle Linux : 6.4/bash shell In the below I want to break out of the loop when it enters the 5th iteration. #!/bin/bash for i in 1 2 3 4 5 6 do echo "$i" if echo "Oh Nooo... i = $i. I need to stop the iteration and jump out of the loop" then break fi done But, it only... (3 Replies)
Discussion started by: John K
3 Replies

3. UNIX for Dummies Questions & Answers

UNIX outer join

Hello.. I am trying to join two files of about 7000 records. it looked quite straight forward when i began, but i'm not getting the desired output. here is what i'm trying to do: cat xxx item,So,Mo,Tu aaa,1,1,1 bbb,1,1,4 ccc,1,1,0 ddd,1,1,1 cat yyy item,Tu,We aaa,1,1 bbb,4,0... (7 Replies)
Discussion started by: wanderingmind16
7 Replies

4. Shell Programming and Scripting

For loop to break apart word

notimes=5 word=excellency the word excellency contains 10 letters. 10 letters divided by 2 = 5. which means, 5 two-groups of letters are in the word excellency. i need to perform a function on each group of letters. but the only thing i can think of is the following, which i just know... (5 Replies)
Discussion started by: SkySmart
5 Replies

5. Programming

OUTER join?

Hi, I have a code where it traverses through each record froma table and creates records in another table. I use FOREACH cursor to do this, i'm using another cursor inside the FOREACH to fetch the details of other table. Please suggest me which would be more efficient, as this will run against... (2 Replies)
Discussion started by: dvah
2 Replies

6. Shell Programming and Scripting

break while loop in BASH

Hi gurus, I have the following part of code which I am using for treating input #!/bin/bash while ]; do arg=$1; shift case $arg in -u) users="$1" shift ;; -g) groups="$1" shift ;; ... (4 Replies)
Discussion started by: wakatana
4 Replies

7. Shell Programming and Scripting

How to break a loop if condition is met

I am having trouble figuring this code I want to grep a text from a file and if it match certain text it break out of the loop or it should continue searching for the text Here is what I have written but it isn't working while true f=`grep 'END OF STATUS REPORT' filename` do if ... (9 Replies)
Discussion started by: Issemael
9 Replies

8. Shell Programming and Scripting

Weird loop break,- please Help

Hi all, im doing this script in which i read from a logfile line by line, my problem is this: The script was working fine until i added this statement to SSH into another machine to look for some data, it enters and retrieves the data just fine, but for some strange reason after it goes thru the... (1 Reply)
Discussion started by: sx3v1l_1n51de
1 Replies

9. Shell Programming and Scripting

How to break the while loop???(Very Urgent)

H, I am running the following log.sh shell script. $no_of_ps=7 while do echo "hello $no_of_ps" ps_file=`tail -$no_of_ps /tmp/A380_RFS24/test.ls | head -1` no_of_ps=`expr $no_of_ps - 1` echo "package is: $ps_file" >> /tmp/A380_RFS24/log/A380_RFS24.log ps_file1=`echo $ps_file| sed... (1 Reply)
Discussion started by: sunitachoudhury
1 Replies

10. Shell Programming and Scripting

ksh how user can break out of loop

Hi Folks, I am trying to write a simple script which involves a potentially infinite loop repeating a number of tasks quickly. I would like to enable the user to break out of this when he/she wishes (some key stroke) but not to break out of the script (i.e. which is what happens when a user... (4 Replies)
Discussion started by: beckett
4 Replies
Login or Register to Ask a Question