2019-02-02 19:46:29 -08:00
|
|
|
#!/usr/bin/env nomsu -V6
|
2019-01-14 15:42:48 -08:00
|
|
|
#
|
|
|
|
This file defines some actions for running shell commands.
|
2019-01-18 14:22:17 -08:00
|
|
|
|
2019-01-15 15:53:31 -08:00
|
|
|
external:
|
2019-01-18 14:22:17 -08:00
|
|
|
(at $callsite =sh $cmd) means:
|
|
|
|
$f = ($io.popen $cmd)
|
|
|
|
$contents = ($f, read "*a")
|
|
|
|
[$ok, $return_type, $return] = ($f, close)
|
|
|
|
unless $ok:
|
|
|
|
if ($return_type == "exit"):
|
|
|
|
at $callsite fail "Command failure: Command `\$cmd` failed with exit code \$return"
|
|
|
|
..else:
|
|
|
|
at $callsite fail "Command failure: Command `\$cmd` was terminated by signal \$return"
|
|
|
|
return $contents
|
|
|
|
|
|
|
|
(at $callsite sh> $cmd) means:
|
|
|
|
[$ok, $return_type, $return] = ($os.execute $cmd)
|
|
|
|
unless $ok:
|
|
|
|
if ($return_type == "exit"):
|
|
|
|
at $callsite fail "Command failure: Command `\$cmd` failed with exit code \$return"
|
|
|
|
..else:
|
|
|
|
at $callsite fail "Command failure: Command `\$cmd` was terminated by signal \$return"
|
|
|
|
|
|
|
|
# Attach callsite information for better error reporting
|
|
|
|
(=sh $cmd) compiles to (\(at ("Text" tree with "\($cmd.source)") =sh $cmd) as lua)
|
|
|
|
(sh> $cmd) compiles to (\(at ("Text" tree with "\($cmd.source)") sh> $cmd) as lua)
|