Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- args = { ... }
- if fs.exists("config/start.cfg") then
- k = fs.open("config/start.cfg", 'w')
- k.write("drives")
- k.close()
- end
- if table.getn(args) == 1 then
- if (args[1] == "colours") or (args[1] == "drives") then
- f = fs.open("config/start.cfg", 'w')
- f.write(args[1])
- f.close()
- end
- end
- g = fs.open("config/start.cfg", 'r')
- program = g.readAll()
- print(program)
- g.close()
- shell.run(program)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement