File: README

package info (click to toggle)
hare 0.26.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,352 kB
  • sloc: asm: 1,374; makefile: 123; sh: 117; lisp: 101
file content (7 lines) | stat: -rw-r--r-- 438 bytes parent folder | download
1
2
3
4
5
6
7
exec: command execution and process management

os::exec handles the execution of arbitrary commands. A programmer who needs to
spawn an external command will usually utilize [[cmd]] to obtain a [[command]]
instance (possibly using functions like [[setenv]] to customize it), then
[[start]] to execute it and obtain a [[process]] (or, [[exec]] to replace the
current process with it), then [[wait]] or [[peek]] to check in on its status.