X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Fguestfish.pod;h=022e03e24d44abe5b2e67428c9a63bb5e7762366;hb=2135ec267eef87532fbdb346e68a4d1570b045e9;hp=17e0da0abb96be0e759b97602c52081a6042859d;hpb=fac15924f59a076c903d453d20305e00e1ae258a;p=libguestfs.git diff --git a/fish/guestfish.pod b/fish/guestfish.pod index 17e0da0..022e03e 100644 --- a/fish/guestfish.pod +++ b/fish/guestfish.pod @@ -973,6 +973,38 @@ user ID of the process, and C<$PID> is the process ID of the server. Guestfish client and server versions must match exactly. +=head2 USING REMOTE CONTROL ROBUSTLY FROM SHELL SCRIPTS + +From Bash, you can use the following code which creates a guestfish +instance, correctly quotes the command line, handles failure to start, +and cleans up guestfish when the script exits: + + #!/bin/bash - + + set -e + + guestfish[0]="guestfish" + guestfish[1]="--listen" + guestfish[2]="--ro" + guestfish[3]="-a" + guestfish[4]="disk.img" + + GUESTFISH_PID= + eval $("${guestfish[@]}") + if [ -z "$GUESTFISH_PID" ]; then + echo "error: guestfish didn't start up, see error messages above" + exit 1 + fi + + kill_guestfish () + { + kill $GUESTFISH_PID >/dev/null 2>&1 ||: + } + trap kill_guestfish EXIT + + guestfish --remote run + # etc. + =head2 REMOTE CONTROL RUN COMMAND HANGING Using the C (or C) command remotely in a command @@ -1236,6 +1268,7 @@ Any existing file with the same name will be overwritten. L, L, +L, L, L, L, @@ -1250,6 +1283,7 @@ L, L, L, L, +L, L, L, L,