Advertisement
banepwn

asciicker.com scraper

May 21st, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.15 KB | None | 0 0
  1. #!/bin/bash
  2. DIRNAME="$1"
  3. mkdir "$1"
  4. cd "$1"
  5.  
  6. wget "https://asciicker.com/$DIRNAME/index.html"
  7.  
  8. wget "https://asciicker.com/$DIRNAME/index.js"
  9. wget "https://asciicker.com/$DIRNAME/index.data"
  10. wget "https://asciicker.com/$DIRNAME/index.wasm"
  11.  
  12. wget "https://asciicker.com/$DIRNAME/asciicker.json"
  13. wget "https://asciicker.com/$DIRNAME/asciicker.png"
  14.  
  15. wget "https://asciicker.com/$DIRNAME/jszip.js"
  16. wget "https://asciicker.com/$DIRNAME/jszip.min.js"
  17. wget "https://asciicker.com/$DIRNAME/ak_world.js"
  18. wget "https://asciicker.com/$DIRNAME/min_ak_world.js"
  19. wget "https://asciicker.com/$DIRNAME/ak_screen.js"
  20. wget "https://asciicker.com/$DIRNAME/min_ak_screen.js"
  21. wget "https://asciicker.com/$DIRNAME/ak_boiler.js"
  22. wget "https://asciicker.com/$DIRNAME/min_ak_boiler.js"
  23.  
  24. wget "https://asciicker.com/$DIRNAME/manifest.json"
  25. wget "https://asciicker.com/$DIRNAME/apple-touch-icon.png"
  26. wget "https://asciicker.com/$DIRNAME/favicon-16x16.png"
  27. wget "https://asciicker.com/$DIRNAME/favicon-32x32.png"
  28. wget "https://asciicker.com/$DIRNAME/android-chrome-192x192.png"
  29. wget "https://asciicker.com/$DIRNAME/android-chrome-256x256.png"
  30. wget "https://asciicker.com/$DIRNAME/safari-pinned-tab.svg"
  31.  
  32. mkdir images
  33. cd images
  34. wget "https://asciicker.com/$DIRNAME/images/house.png"
  35. wget "https://asciicker.com/$DIRNAME/images/map.png"
  36. wget "https://asciicker.com/$DIRNAME/images/map2.png"
  37. wget "https://asciicker.com/$DIRNAME/images/player.png"
  38. wget "https://asciicker.com/$DIRNAME/images/tree.png"
  39. wget "https://asciicker.com/$DIRNAME/images/sky.png"
  40. wget "https://asciicker.com/$DIRNAME/images/temp.png"
  41.  
  42. mkdir ../fonts
  43. cd ../fonts
  44. wget "https://asciicker.com/$DIRNAME/fonts/cp437_4x4.png"
  45. wget "https://asciicker.com/$DIRNAME/fonts/cp437_6x6.png"
  46. wget "https://asciicker.com/$DIRNAME/fonts/cp437_8x8.png"
  47. wget "https://asciicker.com/$DIRNAME/fonts/cp437_10x10.png"
  48. wget "https://asciicker.com/$DIRNAME/fonts/cp437_12x12.png"
  49. wget "https://asciicker.com/$DIRNAME/fonts/cp437_14x14.png"
  50. wget "https://asciicker.com/$DIRNAME/fonts/cp437_16x16.png"
  51. wget "https://asciicker.com/$DIRNAME/fonts/cp437_18x18.png"
  52. wget "https://asciicker.com/$DIRNAME/fonts/cp437_20x20.png"
  53.  
  54. cd ../..
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement