Restarting the apache2 service by using the bash scripting Author 03:45 0 Below Bash script will restart the apache2 service #!/bin/bash RESTART="sudo service apache2 restart" PGREP="/usr/bin/pgrep... Read More
Fibonacci Series Program in Shell script Author 23:18 0 #!/bin/bash echo "Enter the number" read n a=0;b=1 echo $a echo $b #c=$(($a+$b)) while [ `expr $a + $b` -le $n ] o... Read More