2021-10-16 19:38:49 +00:00
|
|
|
cwd() > Returns the current directory of the shell
|
|
|
|
|
|
|
|
flag(f) > Checks if the `f` flag has been passed to Hilbish.
|
|
|
|
|
2021-10-30 23:53:42 +00:00
|
|
|
read(prompt) -> input? > Read input from the user, using Hilbish's line editor/input reader.
|
|
|
|
This is a separate instance from the one Hilbish actually uses.
|
|
|
|
Returns `input`, will be nil if ctrl + d is pressed, or an error occurs (which shouldn't happen)
|
|
|
|
|
2021-10-16 19:38:49 +00:00
|
|
|
run(cmd) > Runs `cmd` in Hilbish's sh interpreter
|
|
|
|
|