Compare commits

..

No commits in common. "1c1a6f70a59851014fcfdc224e4ba3c92ae859b3" and "9316c4a3ae367b8505db28a7454e498adc80ba1a" have entirely different histories.

2 changed files with 0 additions and 19 deletions

View File

@ -1,5 +1,3 @@
Set up on the computer with `wget https://git.navidsassan.ch/navid.sassan/computercraft/-/raw/master/get get`.
Then use `get README.md` for example, to download the `README.md`.
You can store scripts in `resourcepacks/assets/computercraft/lua/rom/programs/` on the server for them to be available on all turtles.

17
v
View File

@ -1,17 +0,0 @@
-- vi: ft=lua
-- alias for edit
local function printUsage()
print("Usage:")
print("v <filename>")
end
local args = { ... }
if #args < 1 then
printUsage()
return
end
local file = args[1]
shell.run("edit", file)