Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #!/bin/sh
  2. VAR=1
  3. while ((VAR < 10))
  4. do
  5. echo "VAR1 is now $VAR"
  6. ((VAR = VAR +2))
  7. done
  8. echo "finish"
  9.  
  10. #!/bin/sh
  11. #VAR=1
  12. #while ((VAR < 10))
  13. # do
  14. # echo "VAR1 is now $VAR"
  15. # ((VAR = VAR +2))
  16. # done
  17. # echo "finish"
  18. #
  19.  
  20. :set paste
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement