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
Write a Bash script to print count of numbers, count of vowels and count of consonants in a given text Author 06:13 0 Below Bash script will give the output count of Numbers, Vowels, and Consonants #!/bin/sh echo -n "Enter a line of text: " read s... Read More