Advertisement
Guest User

title

a guest
Mar 26th, 2015
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 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" ]
  4. zenty --info --title="Well.." text="You seemed gay to me..."
  5. if [ "$ans" = "yes" ]
  6. zenity --info --title="Yeah" --text="I thought so!"
  7. ans2=$(zenity --entry --title="Gender" --text="What is your gender?")
  8. if [ "$ans2" = "male" ]
  9. zenity --info --title="your new name is..." --text="Faggy"
  10. if [ "$ans2" = "female" ]
  11. zenity --info --title="your new name is..." --text="Dikey"
  12. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement