Linux basics 2
LOOP -2
INTRODUCTION
Linux is a free working framework. The working framework taking the case of Microsoft paid working framework or like Android for versatile, ios and significantly more case of a working framework are there in a market. Yet, Linux is free so all the "hacking" scripting is done in Linux. The circle is the colossal subject and basic too if you fathom it or if not it is the terrible dream you anytime found in the life. I am giving some post to this point in detail after some time. The content for the given output is above the output segment and underneath the introduction. I require supporting from most of my watcher for making this blog to the extensive stature.
The SCRIPT
clear
i=1
while [ $i -le 10 ]do
j=1
while [ $j -le $i ]
do
echo -n "$i"
j=`expr $j + 1`
done
echo " "
i=`expr $i + 1`
done
No comments