Search found 3 matches

by ocmsRzr
Fri Jul 23, 2010 4:19 pm
Forum: Emacs Lisp
Topic: [SOLVED] Running shell command from elisp
Replies: 2
Views: 9623

Re: Running shell command from elisp

Hello, I've solved the problem by calling an asynchronous process, which is outlined in more detail in the manual. Suffice to say here is the result: (setq process (start-process "process" "*post-plots-buffer*" "python" post-elog-path-to-postPlots post-elog-additional-a...
by ocmsRzr
Tue Jul 06, 2010 1:23 am
Forum: Emacs Lisp
Topic: [SOLVED] Running shell command from elisp
Replies: 2
Views: 9623

Re: Running shell command from elisp

Hi, Didn't occur to me to also post my attempts at solving the problem. (defun post-elog-send-post (entry-file) "Actually post the current buffer" (if (stringp entry-file) (setq default-directory post-elog-working-directory) ;(setq entry-file "~/BoostedTopPlots/log_posts/15:57_07_04_1...
by ocmsRzr
Mon Jul 05, 2010 3:04 pm
Forum: Emacs Lisp
Topic: [SOLVED] Running shell command from elisp
Replies: 2
Views: 9623

[SOLVED] Running shell command from elisp

Hello, I'm writing a set of functions to automate posting html files to a webserver. I have a python script that handles authentication and attaching files and an html file. I'm having trouble calling the script because it expects input from the user, but emacs flushes EOFs to the program which resu...