Write a shell script to check whether a given number is prime or not
Source Code
Problem Statement: Write a shell script to print Fibonacci series Algorithm: Here we are giving only the upper limit of the wanted Fibonacci series, by the program default the lower limit is zero. INPUT: n [upper limit] OUTPUT: Fibonacci series [up to n] Step 01: StartStep 02: read nStep 03: a ß 0Step 04: …
Shell script to print Fibonacci series with Algorithm Read More »