2018-06-14 22:17:26 -07:00
|
|
|
use "core"
|
|
|
|
|
2018-06-23 17:22:23 -07:00
|
|
|
action [path of Nomsu file %filename]
|
|
|
|
lua> ".."
|
|
|
|
for f in files.walk(\%filename) do return f end
|
|
|
|
barf "Could not find file: \%filename"
|
|
|
|
|
2018-06-14 22:17:26 -07:00
|
|
|
action [sh> %cmd]
|
|
|
|
lua> ".."
|
|
|
|
local result = io.popen(\%cmd)
|
|
|
|
local contents = result:read("*a")
|
|
|
|
result:close()
|
|
|
|
return contents
|
|
|
|
|
|
|
|
action [read file %filename]
|
2018-06-23 17:22:23 -07:00
|
|
|
=lua "files.read(\%filename)"
|
|
|
|
|
|
|
|
compile [for file %f in %path %body] to
|
|
|
|
Lua ".."
|
|
|
|
for \(%f as lua expr) in files.walk(\(%path as lua expr)) do
|
|
|
|
\(%body as lua statements)
|
|
|
|
\(compile as: === next %f ===)
|
|
|
|
end
|
|
|
|
\(compile as: === stop %f ===)
|
2018-06-14 22:17:26 -07:00
|
|
|
|
|
|
|
action [write to file %filename %text, to file %filename write %text]
|
|
|
|
lua> ".."
|
|
|
|
local file = io.open(\%filename, 'w')
|
|
|
|
file:write(\%text)
|
|
|
|
file:close()
|
|
|
|
|
2018-06-26 15:52:38 -07:00
|
|
|
action [line number of %pos in %str]
|
|
|
|
=lua "files.get_line_number(\%str, \%pos)"
|
|
|
|
|
|
|
|
action [line %line_num in %str]
|
|
|
|
=lua "files.get_line(\%str, \%line_num)"
|