# SS26
# Shell script to generate all combinations of 1 2 3
# Usage: SS26
clear
for in 1 2 3
do
for j in 1 2 3
do
for k in 1 2 3
do
echo $i $j $k
done
done
done
# SS26
# Shell script to generate all combinations of 1 2 3
# Usage: SS26
clear
for in 1 2 3
do
for j in 1 2 3
do
for k in 1 2 3
do
echo $i $j $k
done
done
done
5 comments:
In this program you forget take i in the first for loop....
Hi! Thanks for this program. I found it useful in need!
Hi! Thanks for this program. I found it useful in need!
this is not the generalised program this program is specific only for 123
I am unable to understand the logic of this program
Post a Comment