Notes
=====

A quick port of the ShellExample__ macro.

__ http://xcache.lighttpd.net/wiki/ShellExample

Configuration
=============

To enable::

    [components]
    shellexample.* = enabled

Example
=======

::

    {{{
    #!ShellExample
    $ ./configure --help
    ...
      --enable-abc ......
      --enable-def ......
      --with-ghi[=dir] ......
    ...
    $ ./configure '--enable-abc' \
     '--enable-def' \
     --with-ghi='/usr
    /local'
    (many outputs here)
    
    $ make
    (many outputs again)
    
    (now su to root)
    $ su
    Password:
    (type your root password)
    
    # make install
    (ok, it's now installed)
    }}}