Advertisement
Guest User

Untitled

a guest
Aug 15th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #! /bin/bash -
  2.  
  3. ###############################################
  4. ########### Settings ###########
  5. ###############################################
  6.  
  7. # mailName+mailDomain == fullMail
  8. mailName="yourmail"
  9. mailDomain="@gmail.com"
  10.  
  11. numStart=51
  12. numEnd=52
  13.  
  14. accountName="account"
  15. password="password"
  16.  
  17. birthday=1980-10-20
  18.  
  19. ###############################################
  20. ########### RUN ###########
  21. ###############################################
  22.  
  23. plus="+"
  24. until [ $numStart -gt $numEnd ]
  25. do
  26. ptc2 --username=$accountName$numStart --password=$password --email=$mailName$plus$numStart$mailDomain --birthday=$birthday
  27. ((numStart++))
  28. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement