Skip to content

Commit

Permalink
How to get a manpage for a pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Nov 4, 2023
1 parent aa3f133 commit 874c113
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,22 @@ $ yarn
```


## How do I see a man page for a pkgx pkg?

`man foo` won’t work since pkgx pkgs are not “installed”. Thus you have to
first create an environment that contains that package before invoking `man`:

```sh
pkgx +foo man foo
```

This uses pkgx’s `man` tool. To use the system `man`:

```sh
pkgx +foo -- man foo
```


## I have another question

[Support](support.md)

0 comments on commit 874c113

Please sign in to comment.