diff options
author | Dmytro Aleksandrov <alkersan@gmail.com> | 2019-08-30 18:43:44 +0300 |
---|---|---|
committer | Dmytro Aleksandrov <alkersan@gmail.com> | 2019-08-30 18:43:44 +0300 |
commit | 76f498220c796a39a92ce3bed47c1cc5bac1a99d (patch) | |
tree | 09c0119bc7c6850570fd8f8f101a7c8e4cb7248f /op-mode-definitions/show-history.xml | |
parent | 24495a18b2ba39cd0c5b024dbe63f3e7df92e69c (diff) | |
download | vyos-1x-76f498220c796a39a92ce3bed47c1cc5bac1a99d.tar.gz vyos-1x-76f498220c796a39a92ce3bed47c1cc5bac1a99d.zip |
[op-mode] T1621 rewrite misc commands to python/xml syntax
Diffstat (limited to 'op-mode-definitions/show-history.xml')
-rw-r--r-- | op-mode-definitions/show-history.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/op-mode-definitions/show-history.xml b/op-mode-definitions/show-history.xml new file mode 100644 index 000000000..7fb286264 --- /dev/null +++ b/op-mode-definitions/show-history.xml @@ -0,0 +1,31 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="history"> + <properties> + <help>Show command history</help> + </properties> + <command>HISTTIMEFORMAT='%FT%T%z ' HISTFILE="$HOME/.bash_history" \set -o history; history</command> + <children> + <leafNode name="brief"> + <properties> + <help>Show recent command history</help> + </properties> + <command>HISTTIMEFORMAT='%FT%T%z ' HISTFILE="$HOME/.bash_history" \set -o history; history 20</command> + </leafNode> + </children> + </node> + + <tagNode name="history"> + <properties> + <help>Show last N commands in history</help> + <completionHelp> + <list><NUMBER></list> + </completionHelp> + </properties> + <command>HISTTIMEFORMAT='%FT%T%z ' HISTFILE="$HOME/.bash_history" \set -o history; history $3</command> + </tagNode> + </children> + </node> +</interfaceDefinition> |