blob: cc25dacd5292e180d517945ad7883a3f2c4c59ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.white)
print("Welcome to the bits-UI transfer!")
sleep(2)
if fs.exists("/disk") then
shell.run("copy", "/home", "/disk")
shell.run("copy", "/etc/passwd.pwd", "/disk")
else
print("You need a floppy disk to copy over data.")
print("Installation has been halted.")
sleep(2)
end
|