Symbolic link or symlink ( or sometime called soft link ) is a file that only exists as a reference for another file or directory.
In order to create symlink via command link interface (CLI) in an Unix based system you will need to use ln
command.
ln -s /path/to/file /path/to/symlink
ln
stands for Link.
Leave a Reply