Difference between revisions of "Symbolic link"

From Computer History Wiki
Jump to: navigation, search
(Unredirect ITS.)
(Unlink this ITS, there is another.)
 
Line 8: Line 8:
 
* The [[Multics]] paper "A General-Purpose File System For Secondary Storage" from 1965 describes symbolic links.
 
* The [[Multics]] paper "A General-Purpose File System For Secondary Storage" from 1965 describes symbolic links.
 
* [[CTSS]] supposedly had links.
 
* [[CTSS]] supposedly had links.
* [http://www.mit.edu/~cbf/thesis.htm Charles Frankston wrote in 1984]: "Until recently symbolic file system links seemed to be an MIT secret, being found only in [[Multics]] and two homegrown MIT systems: [[ITS]] for the [[PDP-10]] and [[MagicSix]] for [[Interdata_8/32|Interdata/Perkin-Elmer 32 bit machines]]. However, symbolic links have been added to [[4.2 BSD|release 4.2 of Berkeley Unix]]."
+
* [http://www.mit.edu/~cbf/thesis.htm Charles Frankston wrote in 1984]: "Until recently symbolic file system links seemed to be an MIT secret, being found only in [[Multics]] and two homegrown MIT systems: ITS for the [[PDP-10]] and [[MagicSix]] for [[Interdata_8/32|Interdata/Perkin-Elmer 32 bit machines]]. However, symbolic links have been added to [[4.2 BSD|release 4.2 of Berkeley Unix]]."
  
 
{{semi-stub}}
 
{{semi-stub}}
  
 
[[Category: OS Basics]]
 
[[Category: OS Basics]]

Latest revision as of 07:32, 6 September 2023

A symbolic link is a connection between one file name in a file system and another (the 'target'; which does not necessarily need to exist at the time the symbolic link is created), such that references to the first name wind up at the second.

They differ from hard links in that if the target file is deleted, and replaced with a different file, references to the symbolic link will go to the new file.

History