From 1e9a8a61200cdf882e2d1a4b1aa7781b6d1d52b1 Mon Sep 17 00:00:00 2001
From: TorchedSammy
11 return hilbish.runner.sh(input)
12end)
setMode(cb) | This is the same as the hilbish.runnerMode function. |
lua(cmd) | Evaluates cmd as Lua input. This is the same as using dofile |
sh(cmd) | Runs a command in Hilbish’s shell script interpreter. |
Returns the current runner by name. | |
Sets the current interactive/command line runner mode. | |
Adds a runner to the table of available runners. If runner is a table, | |
Get a runner by name. | |
Sets a runner by name. The runner table must have the run function in it. | |
Executes cmd with a runner. If runnerName isn’t passed, it uses |
function
cb
Evaluates cmd
as Lua input. This is the same as using dofile
or load
, but is appropriated for the runner interface.
string
cmd
Runs a command in Hilbish’s shell script interpreter.
This is the equivalent of using source
.
string
cmd
Returns the current runner by name.
This function has no parameters.
Sets the current interactive/command line runner mode.
name
string
setMode(cb) | This is the same as the hilbish.runnerMode function. |
lua(cmd) | Evaluates cmd as Lua input. This is the same as using dofile |
sh(cmd) | Runs a command in Hilbish’s shell script interpreter. |
hilbish.runner.getCurrent() | Returns the current runner by name. |
hilbish.runner.setCurrent(name) | Sets the current interactive/command line runner mode. |
hilbish.runner.add(name, runner) | Adds a runner to the table of available runners. If runner is a table, |
hilbish.runner.get(name) | Get a runner by name. |
hilbish.runner.set(name, runner) | Sets a runner by name. The runner table must have the run function in it. |
hilbish.runner.exec(cmd, runnerName) | Executes cmd with a runner. If runnerName isn’t passed, it uses |
Evaluates cmd
as Lua input. This is the same as using dofile
or load
, but is appropriated for the runner interface.
string
cmd
Runs a command in Hilbish’s shell script interpreter.
This is the equivalent of using source
.
string
cmd
Returns the current runner by name.
This function has no parameters.
Sets the current interactive/command line runner mode.
name
string
Adds a runner to the table of available runners. If runner is a table, -it must have the run function in it.
name
string
+it must have the run function in it.
name
string
runner
function
Sets a runner by name. The runner table must have the run function in it.
Get a runner by name.
name
string
Sets a runner by name. The runner table must have the run function in it.
name
string
runner
table