2018-07-18 17:55:29 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.4.4.3
|
2018-07-15 19:41:22 -07:00
|
|
|
#
|
|
|
|
This file defines some actions that interact with the operating system and filesystem.
|
|
|
|
|
2018-06-14 22:17:26 -07:00
|
|
|
use "core"
|
2018-07-17 23:37:20 -07:00
|
|
|
action [path of Nomsu file %filename]:
|
|
|
|
lua> "for i,f in files.walk(\%filename) do return f end"
|
2018-06-23 17:22:23 -07:00
|
|
|
barf "Could not find file: \%filename"
|
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
action [sh> %cmd]:
|
2018-06-14 22:17:26 -07:00
|
|
|
lua> ".."
|
|
|
|
local result = io.popen(\%cmd)
|
|
|
|
local contents = result:read("*a")
|
|
|
|
result:close()
|
|
|
|
return contents
|
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
action [read file %filename] (=lua "files.read(\%filename)")
|
|
|
|
compile [for file %f in %path %body] to (..)
|
2018-06-23 17:22:23 -07:00
|
|
|
Lua ".."
|
2018-07-17 16:13:35 -07:00
|
|
|
for i,\(%f as lua expr) in files.walk(\(%path as lua expr)) do
|
2018-06-23 17:22:23 -07:00
|
|
|
\(%body as lua statements)
|
2018-07-17 23:37:20 -07:00
|
|
|
\(compile as (===next %f ===))
|
2018-06-23 17:22:23 -07:00
|
|
|
end
|
2018-07-17 23:37:20 -07:00
|
|
|
\(compile as (===stop %f ===))
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
compile [%expr for file %f in %path] to (..)
|
2018-07-09 17:13:40 -07:00
|
|
|
Lua value ".."
|
|
|
|
(function()
|
|
|
|
local ret = list{}
|
2018-07-17 16:13:35 -07:00
|
|
|
for i,\(%f as lua expr) in files.walk(\(%path as lua expr)) do
|
2018-07-09 17:13:40 -07:00
|
|
|
ret[#ret+1] = \(%expr as lua statements)
|
|
|
|
end
|
|
|
|
return ret
|
|
|
|
end)()
|
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
action [..]
|
|
|
|
write to file %filename %text, to file %filename write %text
|
|
|
|
write %text to file %filename
|
|
|
|
..:
|
|
|
|
lua> "local file = io.open(\%filename, 'w')\nfile:write(\%text)\nfile:close()"
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-07-18 01:27:56 -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)")
|