https://github.com/adjivas/manlist
Struct's MAN collections.
https://github.com/adjivas/manlist
Last synced: about 1 year ago
JSON representation
Struct's MAN collections.
- Host: GitHub
- URL: https://github.com/adjivas/manlist
- Owner: adjivas
- License: gpl-3.0
- Created: 2015-03-13T02:44:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-11T12:23:46.000Z (about 11 years ago)
- Last Synced: 2025-02-05T08:16:33.875Z (over 1 year ago)
- Language: Rust
- Size: 312 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
MAN-list
========
[](https://travis-ci.org/adjivas/manlist)
[](https://www.gnu.org/copyleft/gpl.html)
This librairy is a *systen's project* for parse all one'smanuel from **POSIX OS** environement.
#### Environment:
Please, check your **MANPATH**'s variable of environment (```echo $MANPATH```). If this variable is empty, you can resolve this with:
```shell
export MANPATH=$(manpath)
```
#### Example:
```shell
$ cargo run
...
command.names: mkdep
command.description: construct Makefile dependency list
argument.option: -a
argument.comment: Append to the output file,
argument.comment: so that multiple
argument.option: -f
argument.comment: Write the include file dependencies to
argument.option: -p
argument.comment: Cause
command.names: rebase
command.description: "Changes base address of dylibs and bundles"
argument.option: -low_address
argument.comment: Force the base address for the first image to be
argument.option: -high_address
argument.comment: Force the base address for the last image to be such that when that image is loaded it occupies
argument.comment: memory up to
argument.option: -arch
argument.comment: Only rebase the specified architecture. Other architectures in a universal image are left as is.
...
```
#### Directory-Tree:
```shell
.
|__ Cargo.toml
|__ LICENSE
|__ README.md
\__ src
|__ bin.rs
\__ lib.rs
```
# License
*manlist*'s code in this repo uses the [GNU GPL v3](http://www.gnu.org/licenses/gpl-3.0.html) [license](https://github.com/adjivas/manlist/blob/master/LICENSE).
#### About [Dependencies-Crates](https://crates.io/), thanks goes to:
* [glob >= "0.2.9"](https://crates.io/crates/glob)