Advertisement
niel_irc

Untitled

Sep 11th, 2013
57
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. #Mod lister 0.8.1
  4. #pastebin
  5.  
  6.  
  7. #Configuration Change it to whatever you want
  8. MINECRAFT_VERISON=/home/niel/.minecraft/versions
  9. MINECRAFT_MODS=/home/niel/.minecraft/mods
  10.  
  11. #intro
  12. sleep 2
  13. echo
  14. echo
  15. echo --------------[]-+Minecraft Mod Printer+-[]--------------
  16. echo ---------------------made by niel------------------------
  17. echo
  18. echo
  19.  
  20. sleep 2
  21.  
  22.  
  23. #Prints the versions
  24. cd $MINECRAFT_VERISON
  25. echo Grabbing Versions From $MINECRAFT_VERISON
  26. echo
  27. echo Minecraft Versions
  28. dir
  29. echo
  30. sleep 3
  31.  
  32. #Prints Minecraft Mods
  33. cd $MINECRAFT_MODS
  34. echo Grabbing Versions From $MINECRAFT_MODS
  35. echo
  36. echo Minecraft Mods
  37. echo
  38. dir
  39. echo
  40. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement