From 639ca1828b167bf59353f0cd3c8c79c6289bbd5d Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 9 Sep 2010 14:11:32 +0100 Subject: [PATCH] fish: Fix 'more' command to work with any file. --- fish/guestfish.pod | 3 --- fish/more.c | 12 ++---------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/fish/guestfish.pod b/fish/guestfish.pod index 1933290..aeb4c8d 100644 --- a/fish/guestfish.pod +++ b/fish/guestfish.pod @@ -841,9 +841,6 @@ This is used to view a file. The default viewer is C<$PAGER>. However if you use the alternate command C you will get the C command specifically. -NOTE: This will not work reliably for large files -(> 2 MB) or binary files containing \0 bytes. - =head2 quit | exit This exits guestfish. You can also use C<^D> key. diff --git a/fish/more.c b/fish/more.c index a32d5b4..55faefa 100644 --- a/fish/more.c +++ b/fish/more.c @@ -33,7 +33,6 @@ do_more (const char *cmd, int argc, char *argv[]) char filename[] = "/tmp/guestfishXXXXXX"; char buf[256]; const char *pager; - char *content; int r, fd; if (argc != 1) { @@ -57,21 +56,14 @@ do_more (const char *cmd, int argc, char *argv[]) return -1; } - if ((content = guestfs_cat (g, argv[0])) == NULL) { - close (fd); - unlink (filename); - return -1; - } + snprintf (buf, sizeof buf, "/dev/fd/%d", fd); - if (xwrite (fd, content, strlen (content)) == -1) { + if (guestfs_download (g, argv[0], buf) == -1) { close (fd); unlink (filename); - free (content); return -1; } - free (content); - if (close (fd) == -1) { perror (filename); unlink (filename); -- 1.8.3.1