write a program in shell script to find factorial of a number

#Bash script to find factorial of a number
echo -n "Enter a number: "
read number
factorial=1
for(( i=1; i<=number; i++ ))
do
  factorial=$[ $factorial * $i ]
done
echo "The factorial of $number is $factorial"

Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
factorila of number in shell script b. Write a shell program to find the factorial of a given number bash script program of a given factorial bash script program for factorial of a number ' Write a Shell program to find the factorial of a number using for loop. linux shell script to find factorial of a number shell script factorial of a number Bash script to find factorial of a number. bash program to find factorial using function bash program to find factorial using functions shell program for factorial shell program to find the factorial of a number factorial of a number shell script shell script to find factorial of a number run program WRITE A SHELL SCRIPT TO FIND FACTORIAL OF GIVEN NUMBER N shell scripting for factorial of a number bash program to find factorial factorial of a number using shell script Write a shell program to compute the factorial of a given number. calculating factorial of a number with function in bash script calculating factorial of a number in bash script function to find factorial of number shell script factorial for given two number shell script shell script to find factorial shell program for factorial of a number expr for calculate factorial shell script write a shell script to find factorial of a number shell script to find the factorial of a number. factorial of number shell script factorial program shell script Write a Shell script to find factorial of a given integer. shell script to calculate factorial of a number Write a Shell script to find factorial ofa given integer. write a shell script to find factorial of a given integer shell script to find a factorial factorial bash shell script to print factorial of a number factorial shell script shell script for factorial factorial of a number in unix shell program to find factorial of a number factorial of anumber using shell scriptinh factorial in unix while factorial in unix shell script program to find factorial of a number using do while shell script program to find factorial of a number factorial program in shell script Write a shell script to find the factorial of any number entered through keyboard. program to find factorial of a number in shell script write and execute a C program to find factorial of any number in shell. C program to find factorial of any number in shell c factorial of a number in shell script redhat terminal factorial number find factorial of a number in redhat linux Shell Script to find Factorial of a number factorial of a number in shell script Write down the steps to write and execute a C program to find factorial of any number in shell Write down the steps to write and execute a C program to find factorial of any number in shell. Q2. Write down the steps to write and execute a C program to find factorial of any number in shell. factorial in shell script Write a shell script to accept a number and print factorial of the number. find factorial in shell script shell script to check factorial of a number
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source