POSIX and Unix-like Operating Systems
In POSIX-compliant operating systems, symbolic links are created with the symlink system call. The ln
shell command normally uses the link system call, which creates a hard link. When the ln -s
flag is specified, the symlink system call is used instead, creating a symbolic link.
The following command creates a symbolic link at the command-line interface (shell):
ln -s target_path link_pathtarget_path is the relative or absolute path to which the symbolic link should point. Usually the target will exist, although symbolic links may be created to non-existent targets. link_path is the path of the symbolic link.
After creating the symbolic link, it may generally be treated as an alias for the target. Any file system management commands (e.g., cp
, rm
) may be used on the symbolic link. Commands which read or write file contents will access the contents of the target file. The rm
(delete file) command, however, removes the link itself, not the target file.
The POSIX directory listing application, ls
, denotes symbolic links with an arrow after the name, pointing to the name of the target file (see following example), when the long directory list is requested (-l
option). When a directory listing of a symbolic link that points to a directory is requested, only the link itself will be displayed. In order to obtain a listing of the linked directory, the path must include a trailing directory separator character ('/', slash).
Read more about this topic: Symbolic Link
Famous quotes containing the words operating and/or systems:
“... the modern drama, operating through the double channel of dramatist and interpreter, affecting as it does both mind and heart, is the strongest force in developing social discontent, swelling the powerful tide of unrest that sweeps onward and over the dam of ignorance, prejudice, and superstition.”
—Emma Goldman (18691940)
“The geometry of landscape and situation seems to create its own systems of time, the sense of a dynamic element which is cinematising the events of the canvas, translating a posture or ceremony into dynamic terms. The greatest movie of the 20th century is the Mona Lisa, just as the greatest novel is Grays Anatomy.”
—J.G. (James Graham)