Function: f-symlink
f-symlink is a byte-compiled function defined in f.el.
Signature
(f-symlink SOURCE PATH)
Documentation
Create a symlink to SOURCE from PATH.
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-symlink (source path)
"Create a symlink to SOURCE from PATH."
(f--destructive path (make-symbolic-link source path)))