Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require("bibliotecas.atari")
- function removeArquivos()
- print("Removendo arquivos do disco...")
- if not shell.run("rm", "./disk/*") then
- printCor("Falha em remover arquivos.", colors.red)
- os.exit()
- end
- end
- function copiaProgramas()
- print("Copiando programas nativos...")
- if not shell.run("cp", "./*.lua", "./disk") then
- printCor("Falha em copiar programas.", colors.red)
- os.exit()
- end
- end
- function copiaBibliotecas()
- print("Copiando bibliotecas...")
- if not shell.run("cp", "./bibliotecas", "./disk") then
- printCor("Falha em copiar bibliotecas.", colors.red)
- os.exit()
- end
- end
- removeArquivos()
- copiaProgramas()
- copiaBibliotecas()
- printCor("Sucesso!", colors.green)
Advertisement
Add Comment
Please, Sign In to add comment