Computer Science, asked by ShashuNestor, 1 year ago

what is the use of for loop here?

Attachments:

Answers

Answered by Sidyandex
0

A 'for loop' is a bash programming language statement which allows code to be repeatedly executed.

A for loop is classified as an iteration statement i.e. it is the repetition of a process within a bash script.

For example, you can run UNIX command or task 5 times or read and process list of files using a for loop.

Similar questions