symbolic link
Symbolic Link
(file format)SYLK format existed in one form or another in as early as1987, and was part of Excel v1.0. It is is an outgrowth ofVisiCalc DIF file format.
SYLK format is ascii text and represents information aboutboth formula, value, and some formatting information, whichmakes it something like an RTF for spreadsheets. It is usedas a general tabular data exchange format.
http://netghost.narod.ru/gff/graphics/summary/micsylk.htm.
symbolic link
(file system)ln -s OLDNAME NEWNAME
Where OLDNAME is the target of the link (usually a pathname)and NEWNAME is the pathname of the link itself.
Most operations (open, read, write) on the symbolic linkautomatically dereference it and operate on its target(OLDNAME). Some operations (e.g. removing) work on the linkitself (NEWNAME).
In contrast with hard links, there are no restrictions onwhere a symbolic link can point, it can refer to a file onanother file system, to itself or to a file which does noteven exist (e.g. when the target of the symlink is removed).Such problems will only be detected when the link is accessed.