<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Recall on Details...</title>
    <link>https://www.deepreflect.net/tags/recall/</link>
    <description>Recent content in Recall on Details...</description>
    <generator>Hugo</generator>
    <language>en-US</language>
    <copyright>Copyright © 2003 - 2026 Leonardo Rizzi</copyright>
    <lastBuildDate>Tue, 30 Jun 2026 03:28:29 +0200</lastBuildDate>
    <atom:link href="https://www.deepreflect.net/tags/recall/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>OpenVMS - Command line editing</title>
      <link>https://www.deepreflect.net/2010/02/24/openvms-command-line-editing/</link>
      <pubDate>Wed, 24 Feb 2010 17:35:26 +0000</pubDate>
       <guid isPermaLink="false">http://blog.deepreflect.net/?p=840</guid> 
      <description>&lt;p&gt;DCL implements command line editing and recall, so that users can more easily correct typing errors and reuse previous command lines.&lt;/p&gt;
&lt;p&gt;Recall buffer: access to recently issued commands&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ RECALL string   Bring up last command beginning with string.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ RECALL/ALL      Displays all commands and their numbers.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ RECALL number   Use a number found  in RECALL/ALL.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Command line editing (if it isn&amp;rsquo;t on, do: $ SET TERM/LINE):&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {up-arrow}      Previous command in recall buffer.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {down-arrow}    Next command in recall buffer.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl A}        Toggle insert/overstrike editing.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl D}        Move one character left.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl E}        Move to the end of the line.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl F}        Move one character right.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl H}        Move to the beginning of the line.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl J}        Delete word left of cursor.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl R}        Rewrite the command line.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl U}        Delete line left of cursor.
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ {Ctrl X}        Cancel the current command line.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Miscellaneous:&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>DCL implements command line editing and recall, so that users can more easily correct typing errors and reuse previous command lines.</p>
<p>Recall buffer: access to recently issued commands</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>$ RECALL string   Bring up last command beginning with string.
</span></span><span style="display:flex;"><span>$ RECALL/ALL      Displays all commands and their numbers.
</span></span><span style="display:flex;"><span>$ RECALL number   Use a number found  in RECALL/ALL.
</span></span></code></pre></div><p>Command line editing (if it isn&rsquo;t on, do: $ SET TERM/LINE):</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>$ {up-arrow}      Previous command in recall buffer.
</span></span><span style="display:flex;"><span>$ {down-arrow}    Next command in recall buffer.
</span></span><span style="display:flex;"><span>$ {Ctrl A}        Toggle insert/overstrike editing.
</span></span><span style="display:flex;"><span>$ {Ctrl D}        Move one character left.
</span></span><span style="display:flex;"><span>$ {Ctrl E}        Move to the end of the line.
</span></span><span style="display:flex;"><span>$ {Ctrl F}        Move one character right.
</span></span><span style="display:flex;"><span>$ {Ctrl H}        Move to the beginning of the line.
</span></span><span style="display:flex;"><span>$ {Ctrl J}        Delete word left of cursor.
</span></span><span style="display:flex;"><span>$ {Ctrl R}        Rewrite the command line.
</span></span><span style="display:flex;"><span>$ {Ctrl U}        Delete line left of cursor.
</span></span><span style="display:flex;"><span>$ {Ctrl X}        Cancel the current command line.
</span></span></code></pre></div><p>Miscellaneous:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>$ {Ctrl 3}        ASCII code for {Esc}.
</span></span><span style="display:flex;"><span>$ {Ctrl I}        ASCII code for {Tab}.
</span></span><span style="display:flex;"><span>$ {Ctrl Z}        Tell DCL &#34;end of file&#34;. Used in some programs
</span></span><span style="display:flex;"><span>to indicate more general sorts of &#34;end&#34; commands.
</span></span></code></pre></div><p>Of these, only {Ctrl I} will insert a character into the command line,
rather than just move the cursor around. No new characters may be
inserted before a tab ({Ctrl I}) in a command line, but existing characters
may be changed in overstrike mode, or deleted. This behavior is documented in the &ldquo;I/O User&rsquo;s Guide&rdquo; and has existed since VMS 4.0.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
