Function: dired-do-symlink-regexp

dired-do-symlink-regexp is an autoloaded, interactive and byte-compiled function defined in dired-aux.el.gz.

Signature

(dired-do-symlink-regexp REGEXP NEWNAME &optional ARG WHOLE-NAME)

Documentation

Symlink selected files whose names match REGEXP to NEWNAME.

See function dired-do-rename-regexp for more info.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
;;;###autoload
(defun dired-do-symlink-regexp (regexp newname &optional arg whole-name)
  "Symlink selected files whose names match REGEXP to NEWNAME.
See function `dired-do-rename-regexp' for more info."
  (interactive (dired-mark-read-regexp "SymLink") dired-mode)
  (dired-do-create-files-regexp
   #'make-symbolic-link
   "SymLink" arg regexp newname whole-name dired-keep-marker-symlink))