anonymoussc
Sep 9, 2015 • Less than a minute read

Symbolic link definition and example

In computing, a symbolic link (also symlink or soft link) is a special type of file that contains a reference to another file or directory in the form of an absolute or relative path and that affects pathname resolution. - Symbolic link

Syntax :

ln -s /path/ linkname

Example (symlinking php executable):

ln -s /opt/lampp/bin/php /usr/local/bin/php

Syntax :

rm linkname

By failing to prepare, you are preparing to fail. - Benjamin Franklin

Post by: Anonymoussc (@anonymoussc)