diff options
Diffstat (limited to 'guestfish.pod')
-rw-r--r-- | guestfish.pod | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/guestfish.pod b/guestfish.pod index 8691dfe9..1dc7730e 100644 --- a/guestfish.pod +++ b/guestfish.pod @@ -156,6 +156,22 @@ The only exception is that if the C<-m> or C<--mount> option was given, the guest is automatically run for you (simply because guestfish can't mount the disks you asked for without doing this). +=head1 QUOTING + +You can quote ordinary parameters using either single or double +quotes. For example: + + add "file with a space.img" + + rm '/file name' + + rm '/"' + +A few commands require a list of strings to be passed. For these, use +a space-separated list, enclosed in quotes. For example: + + vgcreate VG "/dev/sda1 /dev/sdb1" + =head1 COMMANDS =head2 help |