Advertisement
Guest User

Untitled

a guest
Mar 26th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #!/bin/bash
  2. ans=$(zenity --entry --title="Name survey" --text="Please take our survey. Are you homosexual?")
  3. if [ "$ans" = "no" ]; then
  4. zenity --info --title="Well.." text="You seemed gay to me..."
  5. else [ "$ans" = "yes" ]
  6. zenity --info --title="Yeah" --text="I thought so!"
  7. fi
  8. ans2=$(zenity --entry --title="Gender" --text="What is your gender?")
  9. if [ "$ans2" = "male" ]; then
  10. zenity --info --title="your new name is..." --text="Faggy"
  11. else [ "$ans2" = "female" ]
  12. zenity --info --title="your new name is..." --text="Dikey"
  13. fi
  14. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement