-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathricket.troff
51 lines (40 loc) · 819 Bytes
/
ricket.troff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.TH MAN 1
.SH NAME
ricket \- run and manage WASI programs
.SH SYNOPSIS
.PP
.B ricket run
.B path
[
.BI args ...
]
.PP
.B ricket package
[
.B -o
.I output
]
path
.SH DESCRIPTION
.PP
.I ricket
is a WASI runtime for Plan 9 from Bell Labs, which allows for running CLI
applications written in languages that cannot natively compile to Plan 9.
.PP
.B ricket run
will run the .wasm file at the path specified by
.BR path .
Any
.B args
will be passed into the program.
.PP
.B ricket/package
will change the wasm file in
.BR path .
to make it act as an executable, assuming ricket is installed on the system.
.B -o output
is the optional output file path.
.SH BUGS
While not strictly a bug,
.I ricket
must interperet the WASM file, which can be slow as dirt. Perhaps JIT compilation will be availible in the future.