Advertisement
Guest User

Untitled

a guest
Jul 16th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. My tables in excel:
  2.  
  3. A1
  4. wget "http://www.everify.com/driving/plateSelection.php?plate_number=
  5.  
  6. B1
  7. K13
  8.  
  9. C1
  10. Copy and pasted from: https://www.namepros.com/threads/lll-txt-files-3-letter-generators.653968/
  11.  
  12. D1
  13. &state=NJ&type=vin&status=hit”
  14.  
  15. E1
  16. =A1 & B1 & C1 & D1
  17.  
  18. Then apply values all the way down and got the commands to put into a bash script
  19.  
  20. Copy those after cd antifaplates and before grep -H
  21.  
  22. #!/bin/bash
  23. #In nix ya tards or Windows 10 bash
  24.  
  25. mkdir antifaplates
  26.  
  27. cd antifaplates
  28.  
  29. wget "http://www.everify.com/driving/plateSelection.php?plate_number=X15aaa&state=NJ&type=vin&status=hit”
  30. wget "http://www.everify.com/driving/plateSelection.php?plate_number=X15aab&state=NJ&type=vin&status=hit”
  31. wget "http://www.everify.com/driving/plateSelection.php?plate_number=X15aac&state=NJ&type=vin&status=hit”
  32. wget "http://www.everify.com/driving/plateSelection.php?plate_number=X15aad&state=NJ&type=vin&status=hit”
  33.  
  34. ....
  35. wget "http://www.everify.com/driving/plateSelection.php?plate_number=X15zzx&state=NJ&type=vin&status=hit”
  36. wget "http://www.everify.com/driving/plateSelection.php?plate_number=X15zzy&state=NJ&type=vin&status=hit”
  37. wget "http://www.everify.com/driving/plateSelection.php?plate_number=X15zzz&state=NJ&type=vin&status=hit”
  38.  
  39.  
  40. grep -H Honda *php* > results
  41. cat results
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement