<?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: How do I create Shell Shortcuts in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831786#M89060</link>
    <description>try &lt;BR /&gt;&lt;BR /&gt;set -o vi&lt;BR /&gt;&lt;BR /&gt;it's a vi style prompt.&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
    <pubDate>Wed, 23 Oct 2002 13:12:33 GMT</pubDate>
    <dc:creator>Bill McNAMARA_1</dc:creator>
    <dc:date>2002-10-23T13:12:33Z</dc:date>
    <item>
      <title>How do I create Shell Shortcuts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831783#M89057</link>
      <description>Can someone tell me what goes &lt;BR /&gt;into my profile to get those &lt;BR /&gt;cool command line shortcuts &lt;BR /&gt;that do things like History &lt;BR /&gt;using Esc K to recall the &lt;BR /&gt;previously typed commands, &lt;BR /&gt;the way to get the hostname &lt;BR /&gt;to display at the shell &lt;BR /&gt;prompt and any other cool &lt;BR /&gt;things that are typically &lt;BR /&gt;seen on an HPUX box.  &lt;BR /&gt;&lt;BR /&gt;Thanks, Bill</description>
      <pubDate>Wed, 23 Oct 2002 13:02:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831783#M89057</guid>
      <dc:creator>RAND IT Solutions</dc:creator>
      <dc:date>2002-10-23T13:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Shell Shortcuts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831784#M89058</link>
      <description>Hi&lt;BR /&gt;First, this cool features depend of the shells.&lt;BR /&gt;csh, bash and other shell react differently. The ESC-k is a ksh/sh feature when HIST_FILE is defined. For the prompt it is defined by PS1 and PS2 variable. So I think you should take a look at man pages of your favorite shell (for myself it is bash).&lt;BR /&gt;Good luck.&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Oct 2002 13:08:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831784#M89058</guid>
      <dc:creator>Bruno Vidal</dc:creator>
      <dc:date>2002-10-23T13:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Shell Shortcuts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831785#M89059</link>
      <description>Go out to this website and their are all kinds of sysadmin goodies. ftp://contrib:9unsupp8@hprc.external.hp.com</description>
      <pubDate>Wed, 23 Oct 2002 13:11:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831785#M89059</guid>
      <dc:creator>Ken Hubnik_2</dc:creator>
      <dc:date>2002-10-23T13:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Shell Shortcuts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831786#M89060</link>
      <description>try &lt;BR /&gt;&lt;BR /&gt;set -o vi&lt;BR /&gt;&lt;BR /&gt;it's a vi style prompt.&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Wed, 23 Oct 2002 13:12:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831786#M89060</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-10-23T13:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Shell Shortcuts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831787#M89061</link>
      <description>That's all I should need.&lt;BR /&gt;I actually dug out my HPUX&lt;BR /&gt;manual from the dust and&lt;BR /&gt;realized there was a whole&lt;BR /&gt;chapter on it. You guys replied way too fast for me !&lt;BR /&gt;Thanks&lt;BR /&gt;Bill&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Oct 2002 13:15:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831787#M89061</guid>
      <dc:creator>RAND IT Solutions</dc:creator>
      <dc:date>2002-10-23T13:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Shell Shortcuts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831788#M89062</link>
      <description>for command line history&lt;BR /&gt;&lt;BR /&gt;set -o vi&lt;BR /&gt;&lt;BR /&gt;for prompt&lt;BR /&gt;PS1=`hostname`@`logname`"#"&lt;BR /&gt;&lt;BR /&gt;history&lt;BR /&gt;&lt;BR /&gt;HISTSIZE=500&lt;BR /&gt;HISTFILE=.sh_history&lt;BR /&gt;export HISTSIZE HISTFILE&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Oct 2002 13:17:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831788#M89062</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-10-23T13:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Shell Shortcuts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831789#M89063</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;regarding the histfile. Dont make the same mistake and store the histfile on a NFS mounted directory.&lt;BR /&gt;&lt;BR /&gt;This works only 99% of the time. But suddenly your user just cant log in any more.&lt;BR /&gt;&lt;BR /&gt;So this looks like:&lt;BR /&gt;&lt;BR /&gt;HISTFILE=/tmp/.sh_history.$LOGNAME&lt;BR /&gt;export HISTFILE&lt;BR /&gt;&lt;BR /&gt;Regards Stefan</description>
      <pubDate>Thu, 24 Oct 2002 05:27:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-create-shell-shortcuts/m-p/2831789#M89063</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2002-10-24T05:27:57Z</dc:date>
    </item>
  </channel>
</rss>

