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
Ansible Playbook for installing the sample HTTPD server in Linux server Author 21:41 0 --- - hosts: websrvr become: true tasks: - name: Installing the HTTPD Server yum: name: httpd ... Read More