1.

What Is The Syntax Of For Loop In Shell Script?

Answer»

BASIC SYNTAX of for LOOP is GIVEN below:

for VARIABLES in list_of_items

do

command1

command2

….

last_command

done

Basic Syntax of for loop is given below:

for variables in list_of_items

do

command1

command2

….

last_command

done



Discussion

No Comment Found