Function: org-attach-attach-ln
org-attach-attach-ln is an interactive and byte-compiled function
defined in org-attach.el.gz.
Signature
(org-attach-attach-ln)
Documentation
Attach a file by creating a hard link to it.
Beware that this does not work on systems that do not support hard links. On some systems, this apparently does copy the file instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-attach.el.gz
(defun org-attach-attach-ln ()
"Attach a file by creating a hard link to it.
Beware that this does not work on systems that do not support hard links.
On some systems, this apparently does copy the file instead."
(interactive)
(let ((org-attach-method 'ln)) (call-interactively 'org-attach-attach)))