1.

What Is The Use Of Continue Command In Shell Scripting?

Answer»

The continue command is identical to break command except it causes the present iteration of the loop to exit, instead of the ENTIRE loop. Continue command is useful in some scenarios where ERROR has occurred but we STILL WANT to execute the next COMMANDS of the loop.

The continue command is identical to break command except it causes the present iteration of the loop to exit, instead of the entire loop. Continue command is useful in some scenarios where error has occurred but we still want to execute the next commands of the loop.



Discussion

No Comment Found