2019-03-20 15:55:57 -07:00
|
|
|
#!/usr/bin/env nomsu -V7.0.0
|
|
|
|
###
|
|
|
|
This file defines some actions for running shell commands.
|
|
|
|
|
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"):
|
2019-03-20 15:55:57 -07:00
|
|
|
at $callsite fail
|
|
|
|
"Command failure: Command `\($cmd)` failed with exit code \$return"
|
2019-01-18 14:22:17 -08:00
|
|
|
..else:
|
2019-03-20 15:55:57 -07:00
|
|
|
at $callsite fail
|
|
|
|
"Command failure: Command `\($cmd)` was terminated by signal \$return"
|
2019-03-27 15:22:46 -07:00
|
|
|
|
2019-01-18 14:22:17 -08:00
|
|
|
return $contents
|
2019-03-20 15:55:57 -07:00
|
|
|
|
2019-01-18 14:22:17 -08:00
|
|
|
(at $callsite sh> $cmd) means:
|
|
|
|
[$ok, $return_type, $return] = ($os.execute $cmd)
|
|
|
|
unless $ok:
|
|
|
|
if ($return_type == "exit"):
|
2019-03-20 15:55:57 -07:00
|
|
|
at $callsite fail
|
|
|
|
"Command failure: Command `\($cmd)` failed with exit code \$return"
|
2019-01-18 14:22:17 -08:00
|
|
|
..else:
|
2019-03-20 15:55:57 -07:00
|
|
|
at $callsite fail
|
|
|
|
"Command failure: Command `\($cmd)` was terminated by signal \$return"
|
|
|
|
|
|
|
|
### Attach callsite information for better error reporting
|
2019-03-20 16:41:44 -07:00
|
|
|
(=sh $cmd) compiles to \(at \("Text" tree with "\($cmd.source)") =sh \$cmd)
|
|
|
|
(sh> $cmd) compiles to \(at \("Text" tree with "\($cmd.source)") sh> \$cmd)
|