From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer M Krug Subject: [babel] Piping from sh code to shell? Date: Wed, 13 Jul 2011 13:26:41 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001636832034cb88f504a7f1b0a4 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:43032) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qgxab-0003E2-0K for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 07:26:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QgxaW-0007E3-Nk for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 07:26:48 -0400 Received: from mail-qy0-f169.google.com ([209.85.216.169]:42332) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QgxaW-0007Dy-6w for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 07:26:44 -0400 Received: by qyk32 with SMTP id 32so296370qyk.0 for ; Wed, 13 Jul 2011 04:26:42 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode --001636832034cb88f504a7f1b0a4 Content-Type: text/plain; charset=ISO-8859-1 Hi this is not strictly an org-babel question - but here is it anyway. If I have an sh code block as follow #+begin_src sh TXT="Hello World" echo $TXT #+end_src and enter it with C-c ' --- is there a way of piping single lines, regions, the whole block to a shell, similar to the functionality provided by ESS and R? Thanks, Rainer -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology Stellenbosch University South Africa Tel : +33 - (0)9 53 10 27 44 Cell: +33 - (0)6 85 62 59 98 Fax (F): +33 - (0)9 58 10 27 44 Fax (D): +49 - (0)3 21 21 25 22 44 email: Rainer@krugs.de Skype: RMkrug --001636832034cb88f504a7f1b0a4 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi

this is not strictly an org-babel question - but here= is it anyway.

If I have an sh code block as follo= w

#+begin_src sh
=A0 TXT=3D"He= llo World"
=A0 echo $TXT
#+end_src

and e= nter it with C-c ' --- is there a way of piping single=A0lines, regions= , the whole block to a shell, similar to the functionality provided by ESS = and R?

Thanks,

Rainer

-= -
Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Bi= ology, UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion= Biology
Stellenbosch University
South Africa

Tel : =A0 =A0 =A0 +33 - (0)9= 53 10 27 44
Cell: =A0 =A0 =A0 +33 - (0)6 85 62 59 98
Fax (F): =A0 = =A0 =A0 +33 - (0)9 58 10 27 44

Fax (D): =A0 =A0+49 - (0)3 21 21 25 2= 2 44

email: =A0 =A0 =A0Rainer@krugs.de

Skype: =A0 =A0 =A0RMkrug

--001636832034cb88f504a7f1b0a4-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: [babel] Piping from sh code to shell? Date: Wed, 13 Jul 2011 11:43:43 -0600 Message-ID: <878vs2jcl4.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:51613) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qh3YZ-0006GP-65 for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 13:49:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qh3YW-00056T-1o for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 13:49:06 -0400 Received: from mail-iw0-f169.google.com ([209.85.214.169]:65290) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qh3YV-00055x-Fr for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 13:49:03 -0400 Received: by iwn8 with SMTP id 8so6771366iwn.0 for ; Wed, 13 Jul 2011 10:49:01 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Rainer M Krug Cc: emacs-orgmode Hi Rainer, I am not entirely sure what you are asking, but there is currently no support for piping portions of code blocks to a shell. sh code blocks do however support session evaluation, which could be similar. Best -- Eric Rainer M Krug writes: > Hi > > this is not strictly an org-babel question - but here is it anyway. > > If I have an sh code block as follow > > #+begin_src sh > TXT="Hello World" > echo $TXT > #+end_src > > and enter it with C-c ' --- is there a way of piping single lines, regions, > the whole block to a shell, similar to the functionality provided by ESS and > R? > > Thanks, > > Rainer -- Eric Schulte http://cs.unm.edu/~eschulte/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer M Krug Subject: Re: [babel] Piping from sh code to shell? Date: Wed, 13 Jul 2011 20:46:11 +0200 Message-ID: References: <878vs2jcl4.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=0014853941808444b104a7f7d448 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:35201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qh4Rt-0004b1-Cw for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 14:46:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qh4Ro-0007RY-JV for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 14:46:17 -0400 Received: from mail-qw0-f41.google.com ([209.85.216.41]:38168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qh4Ro-0007RN-1k for emacs-orgmode@gnu.org; Wed, 13 Jul 2011 14:46:12 -0400 Received: by qwa26 with SMTP id 26so3985967qwa.0 for ; Wed, 13 Jul 2011 11:46:11 -0700 (PDT) In-Reply-To: <878vs2jcl4.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric Schulte Cc: emacs-orgmode --0014853941808444b104a7f7d448 Content-Type: text/plain; charset=ISO-8859-1 On Wed, Jul 13, 2011 at 7:43 PM, Eric Schulte wrote: > Hi Rainer, > > Hi Eric, > I am not entirely sure what you are asking, but there is currently no > support for piping portions of code blocks to a shell. That is exactly what I am asking - thanks for decrypting my email. > sh code blocks > do however support session evaluation, which could be similar. > True - I haven't thought about that. Thanks, Rainer > > Best -- Eric > > Rainer M Krug writes: > > > Hi > > > > this is not strictly an org-babel question - but here is it anyway. > > > > If I have an sh code block as follow > > > > #+begin_src sh > > TXT="Hello World" > > echo $TXT > > #+end_src > > > > and enter it with C-c ' --- is there a way of piping single lines, > regions, > > the whole block to a shell, similar to the functionality provided by ESS > and > > R? > > > > Thanks, > > > > Rainer > > -- > Eric Schulte > http://cs.unm.edu/~eschulte/ > -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology Stellenbosch University South Africa Tel : +33 - (0)9 53 10 27 44 Cell: +33 - (0)6 85 62 59 98 Fax (F): +33 - (0)9 58 10 27 44 Fax (D): +49 - (0)3 21 21 25 22 44 email: Rainer@krugs.de Skype: RMkrug --0014853941808444b104a7f7d448 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

On Wed, Jul 13, 2011 at 7:43 PM, Eric Sc= hulte <schul= te.eric@gmail.com> wrote:
Hi Rainer,


Hi Eric,
=A0
I am not entirely sure what you are asking, but there is currently no
support for piping portions of code blocks to a shell. =A0

That is exactly what I am asking - thanks for decrypting my= email.
=A0
sh code blocks
do however support session evaluation, which could be similar.

True - I haven't thought about that.
=
Thanks,

Rainer
=A0

Best -- Eric
Eric Schulte
http://cs.unm.ed= u/~eschulte/



--
Rainer M. Krug, = PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phy= s. (Germany)

Centre of Excellence for Invasion Biology
Stellenbos= ch University
South Africa

Tel : =A0 =A0 =A0 +33 - (0)9 53 10 27 44
Cell: =A0 = =A0 =A0 +33 - (0)6 85 62 59 98
Fax (F): =A0 =A0 =A0 +33 - (0)9 58 10 27 = 44

Fax (D): =A0 =A0+49 - (0)3 21 21 25 22 44

email: =A0 =A0 = =A0Rainer@krugs.de=

Skype: =A0 =A0 =A0RMkrug

--0014853941808444b104a7f7d448--