diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-06-29 12:05:58 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-06-29 12:05:58 +0100 |
commit | 19a1382fc9317ab88cdbf1dde76a8015868af51d (patch) | |
tree | d1e4cbf60e85a3f3b9eeca750f11b109c5954fd8 /fish/Makefile.am | |
parent | 17a45063960b4158fbe9541a2530ed6903b4f761 (diff) | |
download | libguestfs-19a1382fc9317ab88cdbf1dde76a8015868af51d.tar.gz libguestfs-19a1382fc9317ab88cdbf1dde76a8015868af51d.tar.xz libguestfs-19a1382fc9317ab88cdbf1dde76a8015868af51d.zip |
Implement "more" and "less" commands in guestfish.
Use commands such as:
more /etc/passwd
less /etc/fstab
These commands are specific to guestfish.
Diffstat (limited to 'fish/Makefile.am')
-rw-r--r-- | fish/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fish/Makefile.am b/fish/Makefile.am index 1e5b1081..34b1a0b2 100644 --- a/fish/Makefile.am +++ b/fish/Makefile.am @@ -27,7 +27,8 @@ guestfish_SOURCES = \ fish.c \ fish.h \ glob.c \ - lcd.c + lcd.c \ + more.c guestfish_CFLAGS = \ -I$(top_builddir)/src -Wall \ |