<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Use BackSpace Key to Erase characters instead of Delete Key</title>
	<atom:link href="http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Sat, 21 Nov 2009 22:16:28 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Newbie</title>
		<link>http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/comment-page-1/#comment-884</link>
		<dc:creator>Newbie</dc:creator>
		<pubDate>Wed, 20 Oct 2004 08:43:59 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-884</guid>
		<description>This solved it for me thanks</description>
		<content:encoded><![CDATA[<p>This solved it for me thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: angelko</title>
		<link>http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/comment-page-1/#comment-825</link>
		<dc:creator>angelko</dc:creator>
		<pubDate>Mon, 11 Oct 2004 15:05:58 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-825</guid>
		<description>you should use the following:
stty erase ^?

the ^H version is also correct but it works on a different term/keyboard setup.

=angelko</description>
		<content:encoded><![CDATA[<p>you should use the following:<br />
stty erase ^?</p>
<p>the ^H version is also correct but it works on a different term/keyboard setup.</p>
<p>=angelko</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: its me</title>
		<link>http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/comment-page-1/#comment-749</link>
		<dc:creator>its me</dc:creator>
		<pubDate>Tue, 28 Sep 2004 07:23:34 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-749</guid>
		<description>i tried this from # prompt, but its in vein. error: &quot;H: not found&quot;. i entered it exactly as you mentioned.</description>
		<content:encoded><![CDATA[<p>i tried this from # prompt, but its in vein. error: &#8220;H: not found&#8221;. i entered it exactly as you mentioned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: siva</title>
		<link>http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/comment-page-1/#comment-225</link>
		<dc:creator>siva</dc:creator>
		<pubDate>Tue, 29 Jun 2004 23:21:57 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-225</guid>
		<description>the solution worked. Here it little more clarification on how to set it in .profile. first at the $ prompt type stty erase BACKSPACE, then copy this line and add it to the .profile. Directly typing BACKSPACE in the .profile is not working.

thanks,
siva</description>
		<content:encoded><![CDATA[<p>the solution worked. Here it little more clarification on how to set it in .profile. first at the $ prompt type stty erase BACKSPACE, then copy this line and add it to the .profile. Directly typing BACKSPACE in the .profile is not working.</p>
<p>thanks,<br />
siva</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qmchenry</title>
		<link>http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/comment-page-1/#comment-95</link>
		<dc:creator>qmchenry</dc:creator>
		<pubDate>Wed, 11 Feb 2004 15:22:24 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-95</guid>
		<description>The trick in describing this is that what you see is not what you type.  Frequently, editors interpret the backspace (CTRL-H) key as a backspace, even if the shell doesn&#039;t.  So when you edit the file, you need to escape the control character.  If the code is copied and pasted, the literal characters &quot;^&quot; and &quot;H&quot; will be pasted, and this is certainly not what is needed.  In an editor, the literal characters ^H and the ^H representing a backspace look the same (although the literal characters are two characters while the backspace ^H is treated as one character while moving the cursor around).

There are two ways I know of to do this.  If you preceed a control character with CTRL-V, the control character will be escaped.  For example, pressing CTRL-V and then BACKSPACE will yield a ^H on the screen which represents a CTRL-H.  The backslash character () will also escape a control character, so you can type BACKSPACE and you&#039;ll also see ^H.  

Let us know if this doesn&#039;t help.
Quinn</description>
		<content:encoded><![CDATA[<p>The trick in describing this is that what you see is not what you type.  Frequently, editors interpret the backspace (CTRL-H) key as a backspace, even if the shell doesn&#8217;t.  So when you edit the file, you need to escape the control character.  If the code is copied and pasted, the literal characters &#8220;^&#8221; and &#8220;H&#8221; will be pasted, and this is certainly not what is needed.  In an editor, the literal characters ^H and the ^H representing a backspace look the same (although the literal characters are two characters while the backspace ^H is treated as one character while moving the cursor around).</p>
<p>There are two ways I know of to do this.  If you preceed a control character with CTRL-V, the control character will be escaped.  For example, pressing CTRL-V and then BACKSPACE will yield a ^H on the screen which represents a CTRL-H.  The backslash character () will also escape a control character, so you can type BACKSPACE and you&#8217;ll also see ^H.  </p>
<p>Let us know if this doesn&#8217;t help.<br />
Quinn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mhobbs13</title>
		<link>http://www.tech-recipes.com/rx/164/use-backspace-key-to-erase-characters-instead-of-delete-key/comment-page-1/#comment-94</link>
		<dc:creator>mhobbs13</dc:creator>
		<pubDate>Wed, 11 Feb 2004 12:14:23 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-94</guid>
		<description>I tried this on my Sun Solaris box after I put stty erase ^H in the .profile I then save the .profile and logout then log back in and I see this -sh: H: not found  and I still get ^H when I try to back-space.  Can anyone help.
thanks,
Michael Hobson
michael.hobson@its.state.ms.us</description>
		<content:encoded><![CDATA[<p>I tried this on my Sun Solaris box after I put stty erase ^H in the .profile I then save the .profile and logout then log back in and I see this -sh: H: not found  and I still get ^H when I try to back-space.  Can anyone help.<br />
thanks,<br />
Michael Hobson<br />
<a href="mailto:michael.hobson@its.state.ms.us">michael.hobson@its.state.ms.us</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
