Get Update on recent Technology & Programming

Showing posts with label Shell Scripting. Show all posts
Showing posts with label Shell Scripting. Show all posts

Sunday, 29 October 2017

Shell Script to Print Patterns

pattern 1 : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 1:...

Shell Script Arithmetic Operations

Shell Script Arithmetic Operations echo "Enter first number :-" read num1 echo "Enter second number :-" read num2 ans=`expr $num1 + $num2` echo "Addition is : $ans" ans=`expr $num1 - $num2` echo "Substraction is...

Shell Script Program To Print Prime Numbers upto a Given Number

Shell Script Program To Print Prime Numbers upto a Given Number echo Enter a number till which you want to print the prime numbers read num c=2 while [ $c -le $num ] do...

Shell Script Program To Check Number is Prime Or Not

Shell Script Program To Check Number is Prime Or Not echo Enter a number read num i=2 flag=1 while [ $i -lt $num ] do a=`expr $num % $i` if [ $a -eq 0...

Shell Script Program To Find Factorial of Any Number

Shell Script Program To Find Factorial of Any Number  echo Enter a number read num i=1 fact=1 while [ $i -le $num ] do fact=`expr $fact \\* $i` i=`expr $i + 1` done echo...

Shell Script Program To Check Number is Even Or Odd

Shell Script Program To Check Number is  Even Or Odd echo "Enter a number" read num rem=`expr $num % 2` if [ $rem -eq 0 ] then echo "$num is Even" else echo "$num...

Hey, we've just launched a new custom color Blogger template. You'll like it -
Join Our Newsletter