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
How to Install sar(System Activity Report) in Linux Ubuntu Author 20:26 0 sudo apt update sudo apt install sysstat -y sudo apt start sysstat sudo apt ensble sysstat And then change the sysstat config file and c... Read More