emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nick Dokos <nicholas.dokos@hp.com>
To: Panruo Wu <pwu@mymail.mines.edu>
Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org
Subject: Re: org babel execute shell in sh?
Date: Wed, 07 Mar 2012 19:22:38 -0500	[thread overview]
Message-ID: <4878.1331166158@alphaville> (raw)
In-Reply-To: Message from Panruo Wu <pwu@mymail.mines.edu> of "Wed, 07 Mar 2012 10:25:56 MST." <CAHdWVyQoDUfS2GaZ9OkMqcbt7q6tPP789PQ5MF44gAQj=JZxgg@mail.gmail.com>

Panruo Wu <pwu@mymail.mines.edu> wrote:

> Dear list,
> 
> #+begin_src sh
> for np in {1..32}
> do
>   echo $np
> done
> #+end_src
> 
> when executing, the output only shows
> {1..32}
> which is clearly not I want..
> 
> After some investigation, I found that orgmode
> uses "sh" that cannot understand the for loop above.
> 
> My question is, how can I suggest orgmode to use
> "bash" to execute shell script?
> 
> I tried :shebang #!/bin/bash but it does not work
> 

Not a solution, just a workaround: you can write the loop
as

--8<---------------cut here---------------start------------->8---
#+begin_src sh
for np in $(seq 1 32)
do
   echo $np
done
#+end_src
--8<---------------cut here---------------end--------------->8---

Nick

  reply	other threads:[~2012-03-08  0:22 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-07 17:25 org babel execute shell in sh? Panruo Wu
2012-03-08  0:22 ` Nick Dokos [this message]
2012-03-08  4:24 ` Tom Regner
2012-03-09 20:34   ` Panruo Wu
2012-03-10  4:21   ` Nick Dokos
2012-03-10  6:33     ` Tom Regner
2012-03-12  4:34       ` Eric Schulte
2012-03-12 16:38         ` Tom Regner
2012-03-12 17:29           ` Eric Schulte
2012-03-12 19:10             ` Nick Dokos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4878.1331166158@alphaville \
    --to=nicholas.dokos@hp.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=pwu@mymail.mines.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).