SHORTCUTS
Symbolic Links acts as a shortcut or pointer to another file or directory
root@sa:~$ ln -s /targetFileOrDirectory /linkName
* unlink <soft_link_name> removes the link NOT the target file
* rm <soft_link_name> deletes the link file
-does not affect the target file or directory just the link itself
Last updated