3 # Copyright (C) 2009 Red Hat Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 <title>guestfish recipes</title>
23 <link rel="stylesheet" href="recipes.css" type="text/css" title="Standard"/>
26 <h1>guestfish recipes</h1>
27 <p>You can also find these in the
28 <a href="http://git.annexia.org/?p=libguestfs.git;a=tree;f=recipes;hb=HEAD"><code>recipes/</code>
29 subdirectory</a> of the source.</p>
32 <a href="http://libguestfs.org/download/">Download
33 libguestfs and guestfish here</a> or
34 <a href="http://libguestfs.org/">go to the
35 libguestfs home page</a>.
38 <h2>Table of recipes</h2>
42 for f in recipes/*.sh; do
44 echo -n ' <li> <a href="#'$b'">'$b.sh
45 if [ -r recipes/$b.title ]; then
55 for f in recipes/*.sh; do
57 echo -n '<a name="'$b'"></a>'
59 if [ -r recipes/$b.title ]; then
63 echo -n '<small style="font-size: 8pt; margin-left: 2em;"><a href="#'$b'">permalink</a></small>'
65 if [ -r recipes/$b.html ]; then
68 echo '<h3>'$b'.sh</h3>'
69 echo '<div class="example">'
70 source-highlight --output=STDOUT --src-lang=sh --input=$f
72 if [ -r recipes/$b.example ]; then
73 echo '<h3>Example output</h3>'
75 sed -e 's,&,\&,g' -e 's,<,\<,g' -e 's,>,\>,g' < recipes/$b.example