From 5d4b99d84b1b329d7a0047b9ff00be94dd58e18c Mon Sep 17 00:00:00 2001 From: Tino Calancha Date: Tue, 5 Apr 2016 14:08:57 +0900 Subject: [PATCH] Wait until all parallel shell commands finish * lisp/dired-aux.el (dired-shell-stuff-it): Drop all trailing ';' and '&' in command; change indentation with \t to ?\s; Force POSIX shells to wait until all background jobs finish. (Bug#23206). --- lisp/dired-aux.el | 69 ++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 43 insertions(+), 26 deletions(-) diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index d29abf3..f5106bb 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -722,33 +722,50 @@ dired-shell-stuff-it ;; (coming from interactive P and currently ignored) to decide what to do. ;; Smart would be a way to access basename or extension of file names. (let* ((in-background (string-match "[ \t]*&[ \t]*\\'" command)) - (command (if in-background - (substring command 0 (match-beginning 0)) - command)) - (sequentially (string-match "[ \t]*;[ \t]*\\'" command)) - (command (if sequentially - (substring command 0 (match-beginning 0)) - command)) - (stuff-it - (if (or (string-match-p dired-star-subst-regexp command) - (string-match-p dired-quark-subst-regexp command)) - (lambda (x) - (let ((retval command)) - (while (string-match - "\\(^\\|[ \t]\\)\\([*?]\\)\\([ \t]\\|$\\)" retval) - (setq retval (replace-match x t t retval 2))) - retval)) - (lambda (x) (concat command dired-mark-separator x))))) + (command (if in-background + (let ((cmd command)) + (while (string-match "[ \t]*[&]+[ \t]*\\'" cmd) + (setq cmd (substring cmd 0 (match-beginning 0)))) cmd) + command)) + (sequentially (string-match "[ \t]*;[ \t]*\\'" command)) + (command (if sequentially + (let ((cmd command)) + (while (string-match "[ \t]*[;]+[ \t]*\\'" cmd) + (setq cmd (substring cmd 0 (match-beginning 0)))) cmd) + command)) + (in-back-no-seq (and in-background (not sequentially))) + (stuff-it + (if (or (string-match-p dired-star-subst-regexp command) + (string-match-p dired-quark-subst-regexp command)) + (lambda (x) + (let ((retval command)) + (while (string-match + "\\(^\\|[ \t]\\)\\([*?]\\)\\([ \t]\\|$\\)" retval) + (setq retval (replace-match x t t retval 2))) + retval)) + (lambda (x) (concat command dired-mark-separator x))))) (concat - (if on-each - (mapconcat stuff-it (mapcar 'shell-quote-argument file-list) - (if (and in-background (not sequentially)) "&" ";")) - (let ((files (mapconcat 'shell-quote-argument - file-list dired-mark-separator))) - (if (> (length file-list) 1) - (setq files (concat dired-mark-prefix files dired-mark-postfix))) - (funcall stuff-it files))) - (if in-background "&" "")))) + (cond (on-each + (format "%s%s" + (mapconcat stuff-it (mapcar 'shell-quote-argument file-list) + (or (and in-back-no-seq "&") ";")) + ;; POSIX shells running a list of commands in the background + ;; (LIST = cmd_1 & [cmd_2 & ... cmd_i & ... cmd_N &]) + ;; return once cmd_N ends, i.e., the shell does not + ;; wait for cmd_i to finish before executing cmd_i+1. + ;; That means, running (shell-command LIST) may not show + ;; the output of all the commands (Bug#23206). + ;; Add 'wait' to force those POSIX shells to wait until + ;; all commands finish. + (or (and in-back-no-seq (not (memq system-type '(ms-dos windows-nt))) "&wait") + ""))) + (t + (let ((files (mapconcat 'shell-quote-argument + file-list dired-mark-separator))) + (when (cdr file-list) + (setq files (concat dired-mark-prefix files dired-mark-postfix))) + (funcall stuff-it files)))) + (or (and in-background "&") "")))) ;; This is an extra function so that it can be redefined by ange-ftp. ;;;###autoload -- 2.8.0.rc3