<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Esc characters on Linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900599#M70260</link>
    <description>Stuart,&lt;BR /&gt;&lt;BR /&gt;Yust type "history" for yours previous commands.&lt;BR /&gt;Type "up arrow" to get yours last command.&lt;BR /&gt;And type "TAB" to fill the file name. It works also for all commands and programs at the beginning of the line.&lt;BR /&gt;&lt;BR /&gt;Bojan&lt;BR /&gt;</description>
    <pubDate>Sat, 07 May 2005 17:34:06 GMT</pubDate>
    <dc:creator>Bojan Nemec</dc:creator>
    <dc:date>2005-05-07T17:34:06Z</dc:date>
    <item>
      <title>Esc characters on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900598#M70259</link>
      <description>I'm used to using HP-UX wherein I can:&lt;BR /&gt;&lt;BR /&gt;1.  Type "history" and see my previous commands.&lt;BR /&gt;2.  Type "ESC-k" and get back my last command.&lt;BR /&gt;3.  Type ll xxx[ESC-ESC] and have the rest of the file name fill in for me.&lt;BR /&gt;&lt;BR /&gt;Can somebody please tell me how to do those simple little things on Linux?  We are using RedHat Linux on a Dell PowerEdge.  I'm running the bash shell.</description>
      <pubDate>Sat, 07 May 2005 13:44:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900598#M70259</guid>
      <dc:creator>Stuart Abramson</dc:creator>
      <dc:date>2005-05-07T13:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Esc characters on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900599#M70260</link>
      <description>Stuart,&lt;BR /&gt;&lt;BR /&gt;Yust type "history" for yours previous commands.&lt;BR /&gt;Type "up arrow" to get yours last command.&lt;BR /&gt;And type "TAB" to fill the file name. It works also for all commands and programs at the beginning of the line.&lt;BR /&gt;&lt;BR /&gt;Bojan&lt;BR /&gt;</description>
      <pubDate>Sat, 07 May 2005 17:34:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900599#M70260</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2005-05-07T17:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Esc characters on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900600#M70261</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;1. "history" does the same on my Linux box (SuSE).&lt;BR /&gt;&lt;BR /&gt;2. "ESC-k" is very easy to configure : edit the .bashrc file in your home dir, and add :&lt;BR /&gt;&lt;BR /&gt;UNSET INPUTRC&lt;BR /&gt;set -o vi&lt;BR /&gt;&lt;BR /&gt;3. On linux I use TAB for filename completion. It has some nice features, like "TAB-TAB" that looks into the "PATH" and displays all executable files that match the first characters you typed.&lt;BR /&gt;&lt;BR /&gt;Of course if you prefer another shell than bash, you can configure your Linux box to use it. As an example : pdksh is a clone of korn shell.&lt;BR /&gt;&lt;BR /&gt;Good lcuk.&lt;BR /&gt;&lt;BR /&gt;Kodjo</description>
      <pubDate>Sat, 07 May 2005 17:36:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900600#M70261</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2005-05-07T17:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Esc characters on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900601#M70262</link>
      <description>One more alternative for q3.&lt;BR /&gt;&lt;BR /&gt;Place the following in your $HOME/.inputrc&lt;BR /&gt;&lt;BR /&gt;"\e\e":complete-filename&lt;BR /&gt;&lt;BR /&gt;ESC-ESC will now complete the filename.</description>
      <pubDate>Sun, 08 May 2005 03:04:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900601#M70262</guid>
      <dc:creator>Ermin Borovac</dc:creator>
      <dc:date>2005-05-08T03:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Esc characters on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900602#M70263</link>
      <description>To know which shell is on your system do&lt;BR /&gt;#cat /etc/shells &lt;BR /&gt;On most Linux distribution you will have the following shell available&lt;BR /&gt;&lt;BR /&gt;/bin/sh&lt;BR /&gt;/bin/bash&lt;BR /&gt;/sbin/nologin&lt;BR /&gt;/bin/ash&lt;BR /&gt;/bin/bsh&lt;BR /&gt;/bin/ksh&lt;BR /&gt;/usr/bin/ksh&lt;BR /&gt;/usr/bin/pdksh&lt;BR /&gt;/bin/tcsh&lt;BR /&gt;/bin/csh&lt;BR /&gt;&lt;BR /&gt;To interactively change this use chsh command &lt;BR /&gt;for permanent change modify the /etc/passwd entry for the user&lt;BR /&gt;&lt;BR /&gt;Also the default is usualy bash in emacs line mode, but if you like vi line mode better follow the set -o vi will do the trick.&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre Huc</description>
      <pubDate>Sun, 08 May 2005 07:53:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900602#M70263</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2005-05-08T07:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Esc characters on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900603#M70264</link>
      <description>Hi Stuart,&lt;BR /&gt;&lt;BR /&gt;If you use set -o vi, the auto-complete function changes in [ESC][\] in stead of [ESC ESC] which you are used to on HP-UX.&lt;BR /&gt;The first time for me with bash, I really missed vi-ing on the command line (i.e. ESC-k / &lt;SEARCH-STRING&gt;)&lt;BR /&gt;&lt;BR /&gt;Cheerio,&lt;BR /&gt;&lt;BR /&gt;Renarios&lt;BR /&gt;&lt;/SEARCH-STRING&gt;</description>
      <pubDate>Mon, 09 May 2005 01:49:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900603#M70264</guid>
      <dc:creator>renarios</dc:creator>
      <dc:date>2005-05-09T01:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Esc characters on Linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900604#M70265</link>
      <description>Thanks all!</description>
      <pubDate>Mon, 09 May 2005 11:25:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/esc-characters-on-linux/m-p/4900604#M70265</guid>
      <dc:creator>Stuart Abramson</dc:creator>
      <dc:date>2005-05-09T11:25:12Z</dc:date>
    </item>
  </channel>
</rss>

