X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Fguestfish.pod;h=ea0b3aab009c83d3596a9917bb078863ca341379;hb=a0509ff0715533e341573e24f6888fd7dcf4ba51;hp=254daad64d50015b9a5b625e52b398989166dc32;hpb=f0f3e1621180724e0a907a30ff5dea9695ddead0;p=libguestfs.git diff --git a/fish/guestfish.pod b/fish/guestfish.pod index 254daad..ea0b3aa 100644 --- a/fish/guestfish.pod +++ b/fish/guestfish.pod @@ -973,6 +973,39 @@ 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 + + cleanup_guestfish () + { + guestfish --remote -- exit >/dev/null 2>&1 ||: + } + trap cleanup_guestfish EXIT ERR + + guestfish --remote -- run + + # ... + =head2 REMOTE CONTROL RUN COMMAND HANGING Using the C (or C) command remotely in a command @@ -1236,6 +1269,7 @@ Any existing file with the same name will be overwritten. L, L, +L, L, L, L, @@ -1249,6 +1283,8 @@ L, L, L, L, +L, +L, L, L, L, @@ -1278,4 +1314,4 @@ 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. +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.