Symbolic link: Difference between revisions

From James's Wiki
Jump to: navigation, search
Created page with " To create a new symlink (will fail if symlink exists already): ln -s /path/to/file /path/to/symlink To create or update a symlink: ln -sf /path/to/file /path/to/symlink"
(No difference)

Revision as of 16:41, 10 February 2018


To create a new symlink (will fail if symlink exists already):

ln -s /path/to/file /path/to/symlink

To create or update a symlink:

ln -sf /path/to/file /path/to/symlink