Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. prompttext=""
  4. echo -n "hey mijk, wanna go steady? (y,n) "
  5. read prompttext
  6. if [ $prompttext == "y" ] || [ $prompttext == "Y" ]; then
  7. echo "You said yes! i must now stalk you.... time to pull out the photoshop and see what our babies will look like!"
  8. else
  9. echo "fine, i see how it is"
  10. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement