From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: hemalpandya@gmail.com Newsgroups: gmane.emacs.help Subject: Re: How to disable command echoing in Emacs shell? Date: Wed, 6 Nov 2013 14:17:23 -0800 (PST) Message-ID: <2dcab0e2-e236-4232-90e2-c26b9e44f428@googlegroups.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1383777070 13507 80.91.229.3 (6 Nov 2013 22:31:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 6 Nov 2013 22:31:10 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Nov 06 23:31:15 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VeBd1-0004yx-FE for geh-help-gnu-emacs@m.gmane.org; Wed, 06 Nov 2013 23:31:11 +0100 Original-Received: from localhost ([::1]:36357 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeBd1-0007aK-28 for geh-help-gnu-emacs@m.gmane.org; Wed, 06 Nov 2013 17:31:11 -0500 X-Received: by 10.66.144.41 with SMTP id sj9mr2231567pab.23.1383776244300; Wed, 06 Nov 2013 14:17:24 -0800 (PST) X-Received: by 10.182.44.163 with SMTP id f3mr56438obm.34.1383776244197; Wed, 06 Nov 2013 14:17:24 -0800 (PST) Original-Path: usenet.stanford.edu!y3no4012259pbx.0!news-out.google.com!9ni14415qaf.0!nntp.google.com!o2no23077798qas.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=192.138.150.9; posting-account=4NJEigoAAAB211Siq-EYDxk_isbSMVkS Original-NNTP-Posting-Host: 192.138.150.9 User-Agent: G2/1.0 Injection-Date: Wed, 06 Nov 2013 22:17:24 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:202107 X-Mailman-Approved-At: Wed, 06 Nov 2013 17:30:36 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:94378 Archived-At: On Tuesday, October 19, 2010 5:15:45 AM UTC-7, kj wrote: > In Barry Margolin writes: > > >In article , kj > >wrote: > > >> This question is surprisingly difficult to find an answer for: > >> > >> How do I turn off the command echoing in *shell*? E.g., currently, > >> the interactions look like this: > >> > >> % date > >> date > >> Mon Oct 18 19:22:46 EDT 2010 > >> > >> I want just this: > >> > >> % date > >> Mon Oct 18 19:22:46 EDT 2010 > >> > >> > >> TIA! > >> > >> ~kj > > >stty -echo > > Hmm. That was totally unexpected. I thought it would have been > some Emacs setting. (No wonder I couldn't find the answer.) Many > thanks! > > ~kj Another option is to set `comint-process-echoes` to `t`, which is indeed an Emacs setting :)