summaryrefslogtreecommitdiff
path: root/op-mode-definitions/show-history.xml.in
blob: 1781fa26765255ce05403b2da56a7ff10f4a39ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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>
          <virtualTagNode>
            <properties>
              <help>Show last N commands in history</help>
              <completionHelp>
                <list>&lt;NUMBER&gt;</list>
              </completionHelp>
            </properties>
            <command>HISTTIMEFORMAT='%FT%T%z ' HISTFILE="$HOME/.bash_history" \set -o history; history $3</command>
          </virtualTagNode>
        </children>
      </node>
   </children>
  </node>
</interfaceDefinition>