Exam 200-901 | Question id=6198 | Application Deployment and Security |
Refer to the exhibit.
#!/bin/bash
read ndir
while [ -d "$ndir" ]
do
cd $ndir
done
mkdir $ndir
What is the action of the Bash script that is shown?
A. |
For all directories in the current folder, the script goes into the directory and makes a new directory. | |
B. |
The script waits until input is entered. If the directory exists, the script goes into it until there is no directory with the same name, then it creates a new directory. | |
C. |
The script waits until input is entered, then it goes into the directory entered and creates a new directory with the same name. | |
D. |
The script goes into the directory called "$ndir" and makes a new directory called "$ndir". |