@harishgawande
Nothing here yet.
Nothing here yet.
Loops (for loop): Execute a block of code repeatedly. #!/bin/bash for i in {1..5}; do echo "Iteration $i" done Example 1 : Write the script, if executed as ./CreateDirectories.sh then it creates 90 directories as day1 day2 day3 .... day90 nano Cr...

What is Shell ? A shell is special user program which provide an interface to user to use operating system services. Shell accept human readable commands from user and convert them into something which kernel can understand. It is a command language ...
