What is the last line of bash shell script for loop?

1 answer

Answer

1011751

2026-08-05 12:55

+ Follow

The last line of a Bash shell script for loop typically closes the loop with the done keyWord. For example:

<code class="language-bash">for i in {1..5}; do

echo "Number $i" done

</code>

Here, done signifies the end of the for loop.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.