On Tue, 22 Nov 2011 10:25:52 -0800
Matt Wilkie <[email protected]> wrote:

>    Popen(r'/bin/bash --login -c "pushd %s;bash"' % path)

Close.  Maybe

Popen(['xterm', '-e', '/bin/bash', '--login', '-c', 'pushd %s; bash'%path])

Neat use of pushd.  If you're running screen, a shell switching
wrapper for unix, you can do use code like that in the leoscreen plugin
to push commands into existing terminals, another option.

Cheers -Terry

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/leo-editor?hl=en.

Reply via email to