How to Run a "Dot 1" File in Linux Terminal -
i need run file in terminal (linux).
http://manpages.ubuntu.com/manpages/trusty/man1/ncbi-seg.1.html
it comes ".1" file. ideas?
something (it is, after all, man-page):
nroff -man ncbi-seg.1 |less
better, if program installed (not ".1" file):
man ncbi-seg
(section "1" default).
a comment notes (at least on linux), man
program accepts actual pathname, e.g.,
man ./ncbi-seg.1
and referring followup, made script, qm
in june 1995:
#!/bin/sh tbl $* | nroff -man |less
since then, (not all) versions of man
have incorporated fix automatically run tbl
.
Comments
Post a Comment