From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Memnon Anon Newsgroups: gmane.emacs.help Subject: Re: Executing bash bash script from emacs / elisp Date: Fri, 03 Sep 2010 13:44:50 +0200 Message-ID: <877hj36oot.fsf@mean.albasani.net> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1283514330 19657 80.91.229.12 (3 Sep 2010 11:45:30 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 3 Sep 2010 11:45:30 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Rainer M Krug Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Sep 03 13:45:29 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OrUhy-0001Oh-ED for geh-help-gnu-emacs@m.gmane.org; Fri, 03 Sep 2010 13:45:26 +0200 Original-Received: from localhost ([127.0.0.1]:45566 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OrUhy-0001uQ-1r for geh-help-gnu-emacs@m.gmane.org; Fri, 03 Sep 2010 07:45:26 -0400 Original-Received: from [140.186.70.92] (port=50934 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OrUhU-0001uB-7e for help-gnu-emacs@gnu.org; Fri, 03 Sep 2010 07:44:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OrUhS-0003x4-MT for help-gnu-emacs@gnu.org; Fri, 03 Sep 2010 07:44:55 -0400 Original-Received: from mail-fx0-f41.google.com ([209.85.161.41]:41936) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OrUhS-0003wv-GU for help-gnu-emacs@gnu.org; Fri, 03 Sep 2010 07:44:54 -0400 Original-Received: by fxm3 with SMTP id 3so1157689fxm.0 for ; Fri, 03 Sep 2010 04:44:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject :in-reply-to:message-id:references:user-agent:date:mime-version :content-type; bh=mDsd8ra6snRQofdw8eXrTljJ8Q8WwSim0jr1y0JsrVY=; b=g3wYVZ+s8z9Rs8lBjhewGB1hoN7Q4lb+G99QhOJunsMabInhY5AjR/n5q7jhwC4MEi WX/1SILWucDfVQiO57JCIIdoCSMcZZOOYK7M4IOk8Wxjp8NkSIFjeka18Ylv3QdkIf3R dDdpePzg7DBbC3NE9sC7bwSBrJTEVZeedJUVc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=from:to:cc:subject:in-reply-to:message-id:references:user-agent :date:mime-version:content-type; b=DBIaMJZuMgnydLTAfqUlkVbq8icyxfFIL+IO0TcSk9QcsGzmAYRhWDRoSniH64E3km 5NRIbFcZKJLf7PJ/baAmREpIoF7260L0sKWPiOeDVwNpX5N+x3Qz5sK7rLxLGyk8TVdG XYZ2pBQXWG6WExVLKxfUvhxxlGOl98d2eGNTY= Original-Received: by 10.223.104.204 with SMTP id q12mr490673fao.74.1283514293553; Fri, 03 Sep 2010 04:44:53 -0700 (PDT) Original-Received: from localhost (e178224088.adsl.alicedsl.de [85.178.224.88]) by mx.google.com with ESMTPS id t6sm771972faa.3.2010.09.03.04.44.52 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 03 Sep 2010 04:44:52 -0700 (PDT) In-Reply-To: (Rainer M. Krug's message of "Fri, 03 Sep 2010 11:20:32 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:74860 Archived-At: Hi, Rainer M Krug writes: > essentially: > this-function-executes-a-shell-script(The_Shell_Script.sh) -- Function: call-process program &optional infile destination display -- Function: call-process-shell-command command &optional infile -- Function: start-process name buffer-or-name program &rest args -- Function: start-process-shell-command name buffer-or-name command Have a look at [ (info "(elisp)Processes") ]. Did that help? Memnon