Advertisement
Guest User

Untitled

a guest
May 26th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. fs.makeDir("/pbl")
  2. fs.makeDir("/partitions/")
  3. fs.makeDir("/partitions/0/")
  4.  
  5. for k, v in pairs(fs.list("/")) do
  6. if v == "rom" or v == "partitions" or v == "pbl" then
  7. --do nothing
  8. else
  9. fs.move("/"..v, "/partitions/0/"..v)
  10. end
  11. end
  12.  
  13. shell.run("wget https://raw.githubusercontent.com/MrObsidy/CC-PBL/master/startup startup")
  14. shell.run("wget https://raw.githubusercontent.com/MrObsidy/CC-PBL/master/pbl/mounter /pbl/mounter")
  15. shell.run("wget https://raw.githubusercontent.com/MrObsidy/CC-PBL/master/tools/mnt /tools/mnt")
  16. shell.run("wget https://raw.githubusercontent.com/MrObsidy/CC-PBL/master/tools/umnt /tools/umnt")
  17. shell.run("wget https://raw.githubusercontent.com/MrObsidy/CC-PBL/master/tools/chroot /tools/chroot")
  18. shell.run("wget https://raw.githubusercontent.com/MrObsidy/CC-PBL/master/tools/uchroot /tools/uchroot")
  19. shell.run("wget https://raw.githubusercontent.com/MrObsidy/CC-PBL/master/tools/pblhelp /tools/pblhelp")
  20. print("Done.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement