From: William Denton <wtd@pobox.com>
To: Greg Minshall <minshall@umich.edu>
Cc: emacs-orgmode@gnu.org
Subject: Re: How to get a table into a variable in a shell code block?
Date: Sat, 3 Apr 2021 14:57:54 -0400 (EDT) [thread overview]
Message-ID: <alpine.DEB.2.22.394.2104031456420.101947@shell3.miskatonic.org> (raw)
In-Reply-To: <700587.1617475549@apollo2.minshall.org>
On 3 April 2021, Greg Minshall wrote:
> #+begin_src shell :results output :var n=numbers
> echo ${n[1]}
> #+end_src
Aha, it's in an array but I didn't see it! Thanks. Org was doing it magic but
I got confused by bash.
#+NAME: numbers
| one |
| two |
| three |
#+begin_src shell :results output :var n=numbers
for i in "${n[@]}"; do
echo $i
done
#+end_src
#+RESULTS:
: one
: two
: three
Bill
--
William Denton :: Toronto, Canada --- Listening to Art: https://listeningtoart.org/
https://www.miskatonic.org/ --- GHG.EARTH: https://ghg.earth/
Caveat lector. --- STAPLR: https://staplr.org/
next prev parent reply other threads:[~2021-04-03 18:58 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-03 18:14 How to get a table into a variable in a shell code block? William Denton
2021-04-03 18:45 ` Greg Minshall
2021-04-03 18:57 ` William Denton [this message]
2021-04-04 5:26 ` Michael Welle
2021-04-03 19:01 ` Juan Manuel Macías
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=alpine.DEB.2.22.394.2104031456420.101947@shell3.miskatonic.org \
--to=wtd@pobox.com \
--cc=emacs-orgmode@gnu.org \
--cc=minshall@umich.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).