components/guile/guile-tools.1
author Lijo George - Oracle Corporation - Bangalore India <lijo.x.george@oracle.com>
Mon, 24 Mar 2014 15:04:05 -0700
branchs11-update
changeset 3004 856505663cc3
parent 181 87e11e685b1f
permissions -rw-r--r--
15997718 Interface addition/deletion causing frequent error messages in snmpd.log 17208688 MIB II SNMP table data discrepancy for network interfaces 16356248 snmpd unresponsive for 30 seconds after start with monitors set in snmpd.conf 17651108 snmpd dumps core when there are duplicate "exec" entries in snmpd.conf

'\" t
.\"
.\" Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
.\"
.\" This man page created by Oracle to provide a reference to the
.\" Info format documentation for guile provided with the distribution.
.\"
.TH guile-tools 1 "26 May 2008"
.SH NAME
guile-tools \- displays guile module information 
.SH SYNOPSIS
/usr/bin/guile-tools [OPTION] PROGRAM [ARGS ...]
.SH DESCRIPTION
.LP
'guile-tools' is a wrapper program and installed along w/ `guile'; it 
knows where a particular module is installed and calls it passing its
args to the program. The result is that you need not augment your PATH.  
.LP
Usage is straightforward:
 
      guile-tools --help
      guile-tools --version
      guile-tools [OPTION] PROGRAM [ARGS ...]
.LP 
When Guile is installed, in addition to the `(ice-9 FOO)' modules, a
set of "executable modules" `(scripts BAR)' is also installed.  Each 
is a regular Scheme module that has some additional packaging so 
that it can be called as a program in its own right, from the shell.
For this reason, we sometimes use the term "script" in this context 
to mean the same thing.
.LP
If PROGRAM is "list" or omitted, display contents of scripts dir, 
otherwise PROGRAM is run with ARGS. Options (only one of which may be
used at a time):
.LP
 --scriptsdir DIR - Look in DIR for scripts
 --guileversion VERS - Look in $pkgdatadir/VERS/scripts for scripts
 --source - Display PROGRAM source (ignore ARGS) to stdout
.LP
The modules are self-documenting.  For example, to see the 
documentation for `lint', use one (or both) of the shell commands:
 
        guile-tools display-commentary '(scripts lint)'
        guile-tools --source lint