#bash-script
Read more stories on Hashnode
Articles with this tag
Here is the fibonacci series in bash shell #!/bin/sh echo "Enter the n number you want : " read n echo i=0 j=1 sum=0 echo "$i" echo "$j" while [ $i...