Advertisement
Relatively

Bash for ComputerCraft

Jun 14th, 2015
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.54 KB | None | 0 0
  1. --[[      
  2.                      
  3. ________                     ___      
  4. `MMMMMMMb.                   `MM      
  5.  MM    `Mb                    MM      
  6.  MM     MM    ___      ____   MM  __  
  7.  MM    .M9  6MMMMb    6MMMMb\ MM 6MMb  
  8.  MMMMMMM(  8M'  `Mb  MM'    ` MMM9 `Mb
  9.  MM    `Mb     ,oMM  YM.      MM'   MM
  10.  MM     MM ,6MM9'MM   YMMMMb  MM    MM
  11.  MM     MM MM'   MM       `Mb MM    MM
  12.  MM    .M9 MM.  ,MM  L    ,MM MM    MM
  13. _MMMMMMM9' `YMMM9'Yb.MYMMMM9 _MM_  _MM_
  14.                        
  15.         Made for ComputerCraft                
  16.             By Relative
  17.  
  18.            Public Version 0.2
  19.  
  20. ]]--
  21. local args = {...}
  22. local function split(pString, pPattern)
  23.   -- Split function by Faisal Hanif
  24.   -- http://stackoverflow.com/questions/1426954/
  25.   local Table = {}
  26.   local fpat = "(.-)"..pPattern
  27.   local last_end =  1
  28.   local s, e, cap = pString:find(fpat, 1)
  29.   while s do
  30.     if s ~= 1 or cap ~= "" then
  31.       table.insert(Table,cap)
  32.     end
  33.     last_end = e+1
  34.     s, e, cap = pString:find(fpat, last_end)
  35.   end
  36.   if last_end <= #pString then
  37.     cap = pString:sub(last_end)
  38.     table.insert(Table, cap)
  39.   end
  40.   return Table
  41. end
  42. function errorCheck(coden)
  43.   local ok, err = pcall("function() "..coden.."  end")
  44.   if not ok then return err end
  45.   return true
  46. end
  47.  
  48.  
  49. --[[ Pre-defined Overrides ]]--
  50. --[[ Forever  gone ]]--
  51. local cmds = {
  52.   print = function(line, string)
  53.     print(string)
  54.   end
  55. }
  56.  
  57.  
  58. --[[ Start of Interpreting ]]--
  59. if #args ~=1 then
  60.   print("Usage: "..shell.getRunningProgram().." <file>")
  61.   return
  62. end
  63. if not fs.exists(args[1]) then
  64.   printError("File "..args[1].." does not exist!")
  65.   return
  66. elseif fs.isDir(args[1]) then
  67.   printError("File "..args[1].." is a directory.")
  68.   return
  69. end
  70. local f = fs.open(shell.resolve(args[1]), "r")
  71. if type(f) == "nil" or type(f) ~= "table" then
  72.   printError("File "..shell.resolve(args[1]).." failed to open.")
  73.   return
  74. end
  75. local lType = ""
  76. local i = 1
  77. while true do
  78.   local line = f.readLine()
  79.  
  80.   if not line then
  81.     break
  82.   end
  83.  
  84.   local linesplit = split(line, " ")
  85.   local cmd = linesplit[1]
  86.   if string.sub(cmd, 1,1) == "#" or string.sub(cmd,1,2) == "//" or string.sub(cmd,1,2)=="\-\-" then
  87.     -- interpret as comment line.
  88.     -- you can use lua comment syntax,
  89.     -- # you can put a hashtag(#) at the beginning of thte line
  90.     -- you can put two slashes(//) at the beginning
  91.   elseif cmd == "print" then
  92.     local string = string.sub(line, 7)
  93.     print(string)
  94.   else
  95.     shell.run(unpack(linesplit))
  96.   end
  97.   i = i + 1
  98. end
  99. f.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement