View the script given below:
for i in $(seq 5)
do
echo $i
done
What is the output of this script?
A.
12345
B.
54321
C.
1 2 3 4 5
D.
5 4 3 2 1
Explanation:
View the script given below:
for i in $(seq 5)
do
echo $i
done
What is the output of this script?
View the script given below:
for i in $(seq 5)
do
echo $i
done
What is the output of this script?
A.
12345
B.
54321
C.
1 2 3 4 5
D.
5 4 3 2 1
Explanation: