Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mxtools/prun/ptype.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
42 lines (24 sloc)
852 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% PTYPE(1) | Mariux Tools Documentation | |
NAME | |
==== | |
**ptype** - small **type** like tool for Mariux packages. | |
SYNOPSIS | |
======== | |
| **ptype command** | |
DESCRIPTION | |
=========== | |
Similar to **type** or **which**. **ptype** gives information about a package binary. **type** would only tell something about the package wrapper, and not about the package where the real program is. | |
``` | |
#> type snakemake | |
snakemake is /usr/local/package/bin/snakemake | |
#> ptype snakemake | |
snakemake is /pkg/python-3.8.9-1/bin/snakemake ... | |
... (/usr/local/package/lib/python.profile) | |
``` | |
BUGS | |
==== | |
**ptype** only handles true wrapper scripts from /usr/local/package/bin, not the aliases. I.e. **ptype R** works, **ptype R4** not. | |
See GitHub Issues: <https://github.molgen.mpg.de/mariux64/mxtools> | |
SEE ALSO | |
======== | |
**prun(1)**, **pman(1)** | |