nomsu/lib/filesystem/init.nom

37 lines
1.0 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V6.14
#
This file defines some actions that interact with the filesystem.
2018-12-14 20:21:03 -08:00
externally (files for $path) means:
$files = (=lua "Files.list(\$path)")
if $files:
$files = (List $files)
return $files
2018-11-19 17:21:08 -08:00
2019-01-08 16:38:34 -08:00
external $(read file $filename) = $Files.read
2018-12-30 19:04:34 -08:00
externally [
2018-12-14 20:21:03 -08:00
write to file $filename $text, to file $filename write $text
write $text to file $filename
2018-12-30 19:04:34 -08:00
] all mean:
unless ($filename != "stdin"):
fail "Cannot write to stdin"
2018-12-30 19:04:34 -08:00
lua> ("
local file = io.open(\$filename, 'w')
file:write(\$text)
file:close()
")
2018-06-14 22:17:26 -07:00
2018-12-14 20:21:03 -08:00
externally (source lines of $tree) means:
$source = ($tree.source if ($tree is syntax tree) else $tree)
$file = (read file $source.filename)
2018-12-30 19:04:34 -08:00
return
[
: for $ in ($file, line number at $source.start) to
$file, line number at $source.stop
..: add ($file, line $)
2018-12-30 19:04:34 -08:00
], joined with "\n"
2019-01-08 16:38:34 -08:00
external $(spoof file $text) = $Files.spoof
external $(spoof file $filename = $text) = $Files.spoof