From: "Endless Story" <usable.thought@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Writing an interactive function to accept a string argument, then call a Python script?
Date: 10 Feb 2007 02:57:34 -0800 [thread overview]
Message-ID: <1171105054.246773.140640@p10g2000cwp.googlegroups.com> (raw)
In-Reply-To: <mailman.4285.1171097378.2155.help-gnu-emacs@gnu.org>
On Feb 10, 8:49 am, Kevin Rodgers <kevin.d.rodg...@gmail.com> wrote:
> Endless Story wrote:
> (defun trivial-but-reasonably-valuable (string-to-match)
> (interactive "sMatch: ")
> (shell-command (format "/home/me/myscript.py %s"
> (shell-quote-argument string-to-match))))
Thanks! Below is what I ended up writing (after only 90 minutes of
Googling!!) - now I'm going to try your suggestion of adding shell-
quote-argument (which I gather from the doco does nice things like
escape characters as necessary). Maybe it will obviate the need to
remind the user (me) to use double quotes around multi-word input.
Boy, lisp is SO different than anything else I'm used to ...
(defun wl-psb (searchname)
(interactive"MName to search for, double-quoted: ")
(shell-command (concat "python c:/cygwin/home/texas/name_search.py
" searchname)))
next prev parent reply other threads:[~2007-02-10 10:57 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-09 13:08 Writing an interactive function to accept a string argument, then call a Python script? Endless Story
2007-02-09 14:18 ` Stack
2007-02-10 8:49 ` Kevin Rodgers
[not found] ` <mailman.4285.1171097378.2155.help-gnu-emacs@gnu.org>
2007-02-10 10:57 ` Endless Story [this message]
2007-02-13 6:20 ` Kevin Rodgers
[not found] ` <mailman.4406.1171347657.2155.help-gnu-emacs@gnu.org>
2007-02-13 11:21 ` Endless Story
2007-02-14 17:32 ` Edward Dodge
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.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1171105054.246773.140640@p10g2000cwp.googlegroups.com \
--to=usable.thought@gmail.com \
--cc=help-gnu-emacs@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.
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).