Write a bash script to count the number of directories
This script will count the number of directories and sub-directories in the current directory but not count the current directory itself.
Jun 7, 20224 min read4.9K

Search for a command to run...
Articles tagged with #linux-basics
This script will count the number of directories and sub-directories in the current directory but not count the current directory itself.

Another task that I had to tackle as part of the lessons on shell expansion in my ongoing ALX Software Engineering course was to write a bash script that prints a number with two decimal places. Let's take a practical example and solve it to explain ...

Create a script that prints all possible combinations of two letters, except ee
