From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chris Seberino Newsgroups: gmane.emacs.help Subject: How automatically/immediately run command in ansi-term *with* *arguments* ? Date: Sun, 8 Feb 2015 20:16:36 -0800 (PST) Message-ID: <18d0a858-7d2b-42de-bc61-8e16ff376569@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1423455617 10644 80.91.229.3 (9 Feb 2015 04:20:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 9 Feb 2015 04:20:17 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Feb 09 05:20:17 2015 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 1YKfpY-0006dy-K5 for geh-help-gnu-emacs@m.gmane.org; Mon, 09 Feb 2015 05:20:16 +0100 Original-Received: from localhost ([::1]:58790 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKfpX-0002jb-Tg for geh-help-gnu-emacs@m.gmane.org; Sun, 08 Feb 2015 23:20:15 -0500 X-Received: by 10.182.126.168 with SMTP id mz8mr14951966obb.9.1423455397289; Sun, 08 Feb 2015 20:16:37 -0800 (PST) X-Received: by 10.182.68.113 with SMTP id v17mr74735obt.38.1423455397108; Sun, 08 Feb 2015 20:16:37 -0800 (PST) Original-Path: usenet.stanford.edu!hl2no12552321igb.0!news-out.google.com!db6ni20419igc.0!nntp.google.com!hl2no9050523igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=74.193.13.167; posting-account=VkuUtQkAAADKqMjRUmZTNs7a8uCSNNy2 Original-NNTP-Posting-Host: 74.193.13.167 User-Agent: G2/1.0 Injection-Date: Mon, 09 Feb 2015 04:16:37 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:210313 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:102589 Archived-At: I'm trying to set some shortcuts for shell commands. I want to use ansi-term as it has colors and other niceties not found in shell if I use shell-command.... This works... (ansi-term 'some_command_here') This does *NOT*... (ansi-term 'some_command_here arg1 arg2') How get arguments to work? This would be quite a nice replacement for shell-command if it could for people that like/need ansi-term. cs