Menu

(Solved) : 3 Output Following Script Named Count Bin Bash Number 0 Number Lt 8 Echo N Number Number 1 Q37253906 . . .

3. What is the output of the following script named “count”:

#/bin/bash

number=0

while [ “$number” -lt 8 ]

do

echo -n “$number”

((number += 1))

done

echo

Expert Answer


Answer to 3. What is the output of the following script named “count”: #/bin/bash number=0 while [ “$number” -lt 8 ] do echo -n “$…

OR