Fill This Form To Receive Instant Help
Homework answers / question archive / Continue this Bash Shell Script: for (( i=1; i<=5;i++ )) do for (( j=1; j>=1;j-- )) do echo -n "*" done echo "" done Currently the output of the shell script above is like this: * * * * * Now update the shell script above to make the output look like this: * ** *** **** ***** 11111 2222 333 44 5
Continue this Bash Shell Script:
for (( i=1; i<=5;i++ ))
do
for (( j=1; j>=1;j-- ))
do
echo -n "*"
done
echo ""
done
Currently the output of the shell script above is like this:
*
*
*
*
*
Now update the shell script above to make the output look like this:
*
**
***
****
*****
11111
2222
333
44
5