Symbolic Links

 

Symbolic Links


Links are references to files. Using links, the same file can be accessed from different points in the directory structure. There are two kinds: hard and soft. One almost always uses soft links (ln -s) because they allowing linking of files across disks and also linking of directories.

Standard syntax for creating a link is:

ln -s $OLDPATH/existingfile $NEWPATH/symbolicfile