Wha will be th output of ine following script?
#!/in/bash
secondLoop="ABCDEFG"
counter=0
CAS
for a in 6 7 8 9
do
for bin $secondLoop"
do
let "counter+=1
done
done
echo "This script has Scounter iterations"
Answers
Answered by
6
Answer:
4
Explanation:
I don't know. Just executed in ide.
Answered by
0
The output to the given script is "This script has 4 iterations ".
Similar questions