X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=guestfish-actions.pod;h=04343af2d9bc33999664f8592de1f96811ddd8db;hb=cdc726dcfc8bd0b9351cc6879df1e35f37af7fb8;hp=62be2a918ac30970d20e5e1dcf40f83cca0e02c2;hpb=0cad78b28d48dfcc31f53292d0424ba5ded7fe12;p=libguestfs.git diff --git a/guestfish-actions.pod b/guestfish-actions.pod index 62be2a9..04343af 100644 --- a/guestfish-actions.pod +++ b/guestfish-actions.pod @@ -591,6 +591,17 @@ This returns the verbose messages flag. This command installs GRUB (the Grand Unified Bootloader) on C, with the root directory being C. +=head2 hexdump + + hexdump path + +This runs C on the given C. The result is +the human-readable, canonical hex dump of the file. + +Because of the message protocol, there is a transfer limit +of somewhere between 2MB and 4MB. To transfer large files you should use +FTP. + =head2 is-busy is-busy @@ -1043,6 +1054,35 @@ C should be a file or directory in the mounted file system This is the same as the C system call. +=head2 strings + + strings path + +This runs the L command on a file and returns +the list of printable strings found. + +Because of the message protocol, there is a transfer limit +of somewhere between 2MB and 4MB. To transfer large files you should use +FTP. + +=head2 strings-e + + strings-e encoding path + +This is like the C command, but allows you to +specify the encoding. + +See the L manpage for the full list of encodings. + +Commonly useful encodings are C (lower case L) which will +show strings inside Windows/x86 files. + +The returned strings are transcoded to UTF-8. + +Because of the message protocol, there is a transfer limit +of somewhere between 2MB and 4MB. To transfer large files you should use +FTP. + =head2 sync sync @@ -1193,6 +1233,11 @@ As a special case, if C is C<0> then the length is calculated using C (so in this case the content cannot contain embedded ASCII NULs). +I Owing to a bug, writing content containing ASCII NUL +characters does I work, even if the length is specified. +We hope to resolve this bug in a future version. In the meantime +use C. + Because of the message protocol, there is a transfer limit of somewhere between 2MB and 4MB. To transfer large files you should use FTP.