First page Back Continue Last page Overview

 

Control Structures

 
  • The three types in shell programming :

    • Sequential structures - the program flows one line after another
    • Selection structures - code execution based on a logical decision
      • if, if/else , if/elif/else and conditional operators
    • Repetition structures - code execution is repeated based on a logical decision
      • for, while and until