Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. while getopts h name
  2. do
  3. case $name in
  4. h) humanOpt=1;;
  5. esac
  6. done
  7.  
  8. #TESTING HERE
  9. echo "$humanOpt"
  10.  
  11. if[[ ! -z $humanOpt]]; then
  12. human version
  13. else
  14. computer version
  15. fi
  16.  
  17. bash IProject.sh -h
  18.  
  19. if [[ ! -z $humanOpt ]]; then # here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement