Shell Script to Print Numbers in Descending Order - The Coding Shala

Home >> Scripting >> Descending order of a number

Shell Script to Print Numbers in Descending Order

Write a shell script to print numbers in descending order using a while loop?

Code: 

#!/bin/bash
i=5
while test  $i != 0
do 
echo "$i"
i=`expr $i - 1`
done



Other Posts You May Like
Please leave a comment below if you like this post or found some error, it will help me to improve my content.

Comments

Popular Posts from this Blog

Shell Script to Create a Simple Calculator - The Coding Shala

N-th Tribonacci Number Solution - The Coding Shala

Java Program to Convert Binary to Decimal - The Coding Shala

LeetCode - Shuffle the Array Solution - The Coding Shala

Java Program to Find GCD or HCF of Two Numbers - The Coding Shala