Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. if test-commands; then
  2. consequent-commands;
  3.  
  4. until test-commands; do consequent-commands; done
  5.  
  6. while test-commands; do consequent-commands; done
  7.  
  8. command1 && command2
  9.  
  10. command1 || command2
  11.  
  12. while read a;
  13. do echo "$a";
  14. done < myfile;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement