summaryrefslogtreecommitdiff
path: root/templates/terminal/length
diff options
context:
space:
mode:
authorTom Grennan <tgrennan@io.vyatta.com>2007-11-30 12:23:56 -0800
committerTom Grennan <tgrennan@io.vyatta.com>2007-11-30 12:23:56 -0800
commit20bfe68eddfa1181cdf91aeb45f65fe717a1fb93 (patch)
treebb41c61a2be8a315ec90415ea6b3f56e84644a9f /templates/terminal/length
parentfc05a43ce19c57f8bb4abd68a8e973b9e048ea19 (diff)
downloadvyatta-op-20bfe68eddfa1181cdf91aeb45f65fe717a1fb93.tar.gz
vyatta-op-20bfe68eddfa1181cdf91aeb45f65fe717a1fb93.zip
fix bug 2486
pipe "show" commands and help through pager
Diffstat (limited to 'templates/terminal/length')
-rw-r--r--templates/terminal/length/node.def1
-rw-r--r--templates/terminal/length/node.tag/node.def7
2 files changed, 8 insertions, 0 deletions
diff --git a/templates/terminal/length/node.def b/templates/terminal/length/node.def
new file mode 100644
index 0000000..3e24898
--- /dev/null
+++ b/templates/terminal/length/node.def
@@ -0,0 +1 @@
+help: Set terminal rows
diff --git a/templates/terminal/length/node.tag/node.def b/templates/terminal/length/node.tag/node.def
new file mode 100644
index 0000000..3dfae2b
--- /dev/null
+++ b/templates/terminal/length/node.tag/node.def
@@ -0,0 +1,7 @@
+help: Set terminal to given number of rows (0 disables paging)
+allowed: echo -n '<NUMBER>'
+run: if [ "$3" -eq 0 ] ; then
+ VYATTA_PAGER=cat
+ else
+ stty rows $3
+ fi