From: Myles English <mylesenglish@gmail.com>
To: "Rainer M. Krug" <Rainer@krugs.de>
Cc: emacs-orgmode@gnu.org
Subject: Re: Importing all files into .org document source blocks
Date: Fri, 24 May 2013 21:49:00 +0100 [thread overview]
Message-ID: <871u8w2jer.fsf@gmail.com> (raw)
In-Reply-To: <87y5b47ffj.fsf@krugs.de>
Hi Rainer,
Rainer M. Krug writes:
> Is there a way of importing all files in a directory
> (/etc/apt/sources/list.d/) into an org document, with each being in a
> separate code block?
Maybe this?:
for i in `find . -maxdepth 1 -type f`; do
echo "#+BEGIN_SRC :tangle /this/dir/${i}" >> afile.org
cat "${i}" >> afile.org
echo "#+END_SRC\n" >> afile.org
done
(this kind of reply is becoming a theme of mine)
Myles
prev parent reply other threads:[~2013-05-24 20:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-24 12:03 Importing all files into .org document source blocks Rainer M. Krug
2013-05-24 20:49 ` Myles English [this message]
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=871u8w2jer.fsf@gmail.com \
--to=mylesenglish@gmail.com \
--cc=Rainer@krugs.de \
--cc=emacs-orgmode@gnu.org \
/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).