all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@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: Sat, 10 Feb 2007 01:49:15 -0700	[thread overview]
Message-ID: <eqk0ua$qg8$1@sea.gmane.org> (raw)
In-Reply-To: <1171026496.713032.169290@v33g2000cwv.googlegroups.com>

Endless Story wrote:
> I have hacked out a Python script to do something trivial but
> reasonably valuable to me (search a bunch of files for a matching
> string pulled from another file). Well, okay, now I want to call this
> script from the Emacs minibuffer ... but my understanding of lisp is
> pretty poor, which is why I wrote the script in Python to begin with!
> (took me a couple of hours instead of a month).
> 
> Can anyone give me a simple recipe for an interactive function that
> will do the following:
> 
> 1) In the minibuffer, prompt me for a string to enter.
> 2) Feed the string as the sole argument to the Python script (let's
> say it's at /home/me/myscript.py).
> 3) Display the return value in the minibuffer


(defun trivial-but-reasonably-valuable (string-to-match)
   (interactive "sMatch: ")
   (shell-command (format "/home/me/myscript.py %s"
			 (shell-quote-argument string-to-match))))

-- 
Kevin Rodgers
Denver, Colorado, USA

  parent reply	other threads:[~2007-02-10  8:49 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 [this message]
     [not found] ` <mailman.4285.1171097378.2155.help-gnu-emacs@gnu.org>
2007-02-10 10:57   ` Endless Story
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

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

  git send-email \
    --in-reply-to='eqk0ua$qg8$1@sea.gmane.org' \
    --to=kevin.d.rodgers@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.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.