#!/bin/sh - # libguestfs # Copyright (C) 2009 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. cat < guestfish recipes

guestfish recipes

You can also find these in the recipes/ subdirectory of the source.

Download libguestfs and guestfish here or go to the libguestfs home page.

Table of recipes

' echo echo for f in recipes/*.sh; do b=`basename $f .sh` echo -n '' echo -n '

'$b'.sh' if [ -r recipes/$b.title ]; then echo -n ': ' cat recipes/$b.title fi echo -n 'permalink' echo '

' if [ -r recipes/$b.html ]; then cat recipes/$b.html fi echo '

'$b'.sh

' echo '
' source-highlight --output=STDOUT --src-lang=sh --input=$f echo '
' if [ -r recipes/$b.example ]; then echo '

Example output

' echo '
'
        sed -e 's,&,\&,g' -e 's,<,\<,g' -e 's,>,\>,g' < recipes/$b.example
        echo '
' fi done echo ''