Sometimes I find it handy to have access to the man pages for SRSS when I don't have access to a live system. There used to be a Reference Guide with previous releases, but it was decided to drop that doc from the SRSS book.

I whipped up a very similar pdf file for my use and wanted to share it here. It doesn't have the index, but search works just fine to find the command you are looking for. This now has a handy index by command name.

mandoc.pdf mandoc-index.pdf
/p>

EDIT 10/15/2008: This has been updated... http://blogs.sun.com/ThinkThin/entry/man_page_reference_doc_updated

-------

For those of you interested in how I put this together, here are the details.

# LOCATIONS="/opt/SUNWut/man /opt/SUNWuttsc/man /opt/SUNWkio/man"

# mkdir /tmp/man

# for l in $LOCATIONS; do
> for m in `find $l -print`; do
> cp $m /tmp/man
> done
> done

# cd /tmp/man
#  for i in `ls`; do
> groff -mandoc -t $i > $i.ps
> done

#  gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=../sunraydoc.pdf -dBATCH `ls *.ps`

Comments:

Post a Comment:
  • HTML Syntax: NOT allowed

This blog copyright 2009 by ThinGuy