Loop iteration with two variables


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Loop iteration with two variables
# 8  
Old 07-30-2016
This is tested in bash, but a recent ksh offers the central functionalities as well:
Code:
{ exec 4<&0; { exec 3<&0; while read -u3 -d" " A && read -u4 -d" " B; do echo $A $B; done; } <<< $group1" "; } <<< $group2" "
Joe Kim
Brian Annie
John Kate
Mark Anna


EDIT: Actually, the file descriptor 3 stuff can be omitted and the normal stdin be used.
# 9  
Old 07-30-2016
Quote:
Originally Posted by RudiC
ksh allows for arrays, so this might help:
Code:
A1=($group1)
A2=($group2)
for i in $(seq 0 ${#A1[@]}); do echo ${A1[$i]} ${A2[$i]}; done
Joe Kim
Brian Annie
John Kate
Mark Anna

Might need some polishing, as there's an trailing empty line...


EDIT: Hola, Don Cragun just outperformed me by 2 minutes...
You can get rid of the trailing empty line by changing ${#A1[@]} in the above to $((${#A1[@]}-1)). I usually avoid seq in loops like this because it isn't a built-in in either ksh or bash (at least on OS X).
# 10  
Old 07-30-2016
In bash, ${!A1[@]} returns all the indices of the array A1, so this simplified approach will work:

Code:
for i in ${!A1[@]}; do echo ${A1[$i]} ${A2[$i]}; done
Joe Kim
Brian Annie
John Kate
Mark Anna

Not sure if it does in ksh, though...
# 11  
Old 07-30-2016
Quote:
Originally Posted by RudiC
In bash, ${!A1[@]} returns all the indices of the array A1, so this simplified approach will work:

Code:
for i in ${!A1[@]}; do echo ${A1[$i]} ${A2[$i]}; done
Joe Kim
Brian Annie
John Kate
Mark Anna

Not sure if it does in ksh, though...
${!array[@]} expands to a list of the subscripts of the current elements of array in 1993 and later versions ksh. In 1988 versions of ksh it is a syntax error.
This User Gave Thanks to Don Cragun For This Post:
# 12  
Old 07-30-2016
With standard Posix stuff:
Code:
group1="Joe Brian John Mark"
group2="Kim Annie Kate Anna"
exec 3<<EOF
$(printf "%s\n" $group2)
EOF
while read name1 && read name2 <&3
do
  echo "$name1:$name2"
done <<EOF
$(printf "%s\n" $group1)
EOF

Or, if you use newlines as list separators (which is better if you use names with spaces, plus it saves two subshells):
Code:
group1="\
Joe
Brian
John
Mark"

group2="\
Kim
Annie
Kate
Anna"

exec 3<<EOF
$group2
EOF

while read name1 && read name2 <&3
do
  echo "$name1:$name2"
done <<EOF
$group1
EOF

Output:
Code:
Joe:Kim
Brian:Annie
John:Kate
Mark:Anna

This User Gave Thanks to Scrutinizer For This Post:
# 13  
Old 07-30-2016
Rudy and Don. I really appreciate your responses, and I was able to get both these to run on ksh93 my original diff -r tasks. I hate to flip flop on you, but i was using the print names as an easy example to follow. However it is not running on ksh88. To cut to the chase, i am able to get below code to run ksh88 as long as there is only 1 directory per group, however I need it to run with multiple directories. I will post both examples below. If you have any ideas please let me know. Scrutinizer i will have a look at your example next. Thanks again.

This below does not work in ksh88 when there are two directories per group 1/2.
Code:
#/usr/bin/ksh
group1="/usr/bin /usr/games"
group2="/usr/local/bin /usr/local/games"
i=0
j=0
while [ $i -lt ${#group1[@]} ] && [ $j -lt ${#group2[@]} ]
do	diff -r "${group1[i]}" "${group2[j]}"
	i=$((i + 1))
        j=$((j + 1)) 
done

This below WILL work in ksh88 with only one directory variable per group, note i cannot use () to surround the group1/2 variables in ksh88.

Code:
#/usr/bin/ksh
group1="/usr/bin"
group2="/usr/local/bin"
i=0
j=0
while [ $i -lt ${#group1[@]} ] && [ $j -lt ${#group2[@]} ]
do	diff -r "${group1[i]}" "${group2[j]}"
	i=$((i + 1))
        j=$((j + 1)) 
done

# 14  
Old 07-31-2016
Please show us the exact output you get from running the following script:
Code:
#/usr/bin/ksh
set -xv
group1=("/usr/bin" "/usr/games")
group2=("/usr/local/bin" "/usr/local/games")
i=0
while [ $i -lt ${#group1[@]} ] && [ $i -lt ${#group2[@]} ]
do	echo diff -r "${group1[i]}" "${group2[i]}"
	i=$((i + 1))
done

This User Gave Thanks to Don Cragun For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

While loop is running only for the first iteration

Hello, I've written a script to automate encoding of all the MP4 files in a directory (incl. subdirectories). But unfortunately it's running for the first MP4 file only. My machine details: root@Ubuntu16:~# uname -a Linux Ubuntu16 4.10.0-28-generic #32~16.04.2-Ubuntu SMP Thu Jul 20 10:19:48... (2 Replies)
Discussion started by: prvnrk
2 Replies

2. Shell Programming and Scripting

While loop is causing ssh command to exit from script after first iteration.

I am trying to check multiple server's "uptime" in a loop over "ssh". When I execute multiple ssh commands with hard coded servernames script is executing fine. But when I pass server names using while loop, script is exiting after checking first server's status, why? # serverList... (8 Replies)
Discussion started by: kchinnam
8 Replies

3. Shell Programming and Scripting

Getting the iteration count in WHILE LOOP

bash in RHEL 6.4 I have a requirement in which I want to get the iteration count from a WHILE LOOP. The below mentioned simple script test.sh works fine. In the below script, the WHILE loop will iterate every 5 seconds infinitely until it greps the string BASKETBALL from /tmp/somestring.txt... (6 Replies)
Discussion started by: John K
6 Replies

4. Shell Programming and Scripting

Do something only that last iteration of loop

I have a script with logic like: my_function() { if mkdir $1 mkdir mydir_${2} else do something else fi } read in list of items while read list do my_function $list `date` done so basically it will make a directory for every name in the list and create a directory with the... (6 Replies)
Discussion started by: glev2005
6 Replies

5. Shell Programming and Scripting

For Loop in shellscript - Printing Output for every iteration

for VGLIST in `lsvg -o` do CLOSED_OUT=`echo $VGLIST | lsvg -l $VGLIST | awk '{print $6 " " $7}' | grep closed` if ]; then echo "Filesystems $CLOSED_OUT in VG that are in Closed status" else echo "\n Some message" fi Above Code is working fine, but echo "Filesystems $CLOSED_OUT... (8 Replies)
Discussion started by: chandu123
8 Replies

6. Shell Programming and Scripting

while loop stops after first iteration - remote ssh exit command problem?

I have written the following script to update some Debian boxes. #!/bin/bash mxg_hosts_file="/etc/mxg/ssh-hosts" while read line ; do mxg_host="$(echo ${line} | awk -F":" '{print $1}')" mxg_port="$(echo ${line} | awk -F":" '{print $2}')" echo "Connecting and Upgrading... (3 Replies)
Discussion started by: jelloir
3 Replies

7. Shell Programming and Scripting

for loop iteration and shell programming startup

question :how can i iterate to next item in for loop with the loop e.g for i in `cat abc.txt` do echo $i // this will display first line i=$i+1; // this doesnt work for me. echo $i; //this will display secound line done question: is my approach to manipulate text good? I have... (3 Replies)
Discussion started by: kashif_islam
3 Replies

8. Shell Programming and Scripting

howto stop loop iteration

I wonder how to stop further loop iterations when conditions gets false e.g. This file.txt contains the following structure : 1 2 3 4 5 6 7 8 9 10 How to stop iteration when if statement gets false ? for n in `cat file.txt` do if (( n<=5 )) (1 Reply)
Discussion started by: presul
1 Replies

9. Shell Programming and Scripting

Pick up the return code for every iteration and display the result only once in loop.

Hi All, I amlearning UNIX scripting. I have a small query. I would be thankful if any one helps me out. I have a below piece of code which delets the files. If file dosent have the permissions to delete a particular file I have used 2>>operator to track the error code. But my objective is... (1 Reply)
Discussion started by: manas6
1 Replies

10. Shell Programming and Scripting

New iteration of for-loop without incrementing?

Another question, is it possible to, in a for-loop incrementing until it reaches a certain number, to have it loop again without incrementing? Just have it drop what it is doing when it reaches this command and start again at the same number it was at? I know I could make a while loop and just... (0 Replies)
Discussion started by: jeriryan87
0 Replies
Login or Register to Ask a Question