Penguin
Annotated edit history of SoftLink version 9, including all changes. View license author blame.
Rev Author # Line
4 CraigBox 1 A SoftLink is is a special type of directory entry that allows almost transparent references to another directory entry, typically a file or a directory.
1 PerryLorier 2
4 CraigBox 3 <?plugin OldStyleTable
8 AristotlePagaltzis 4 | __Feature__ | __SoftLink__s | __HardLink__s
5 | Can cross filesystems? | Yes | No
6 | Can refer to directories? | Yes | No
7 | Breaks when the file is moved? | No | Yes
4 CraigBox 8 ?>
9
10 On [Linux], soft links are called [symbolic links|SymLink].
5 DavidHull 11
12 Softlinks are created with the following command line pattern.
7 AristotlePagaltzis 13
14 <pre>
15 ln -s ''/path/from/origfile'' ''/path/to/newlink''
9 AristotlePagaltzis 16 </pre>
5 DavidHull 17
18 You must have appropriate permissions in the directory where you're creating the link for this to work.