if I am trying to run a shell-command in an emacs lisp function in which I call rsync (or scp) multiple times, which shell-command variant should I use? I am currently using shell-command, which locks up emacs until the process is done, and the output that should be visible with the --verbose to rysnc is not printed; I can use shell-command with an '&' at the end of the command string to make it asynchronous, which does print the progress - but while it doesn't 'lock up' emacs entirely, the minibuffer repeatedly asks if I want to kill the process which is crippling in the meantime; and start-process-shell-command, which appears to halt the function only after the first file/directory is transferred; neglecting the rest when there are multiple rsync calls made through my function. None of these seem ideal... any hints? Thank you much!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I have had the most success using start-process myself.
This will send all the output to a single buffer. |
|||
|
|
|
One solution might be to run the command in an actual shell buffer. Then you get to choose which one of those to run:
If you like that idea, you can code it up like this:
Read more on |
|||
|