Penguin

Differences between current version and revision by previous author of SoftLink.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 9 Last edited on Thursday, October 6, 2005 5:10:12 am by AristotlePagaltzis
Older page: version 5 Last edited on Wednesday, September 28, 2005 9:35:26 am by DavidHull Revert
@@ -1,14 +1,18 @@
 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. 
  
 <?plugin OldStyleTable 
-|__Feature__|__SoftLink__' s|__HardLink__' s  
-|Can cross filesystems? | Yes | No  
-|Can refer to directories? | Yes | No 
+| __Feature__ | __SoftLink__s | __HardLink__s  
+| Can cross filesystems? | Yes | No  
+| Can refer to directories? | Yes | No  
+| Breaks when the file is moved? | No | Yes  
 ?> 
  
 On [Linux], soft links are called [symbolic links|SymLink]. 
  
 Softlinks are created with the following command line pattern. 
- ln -s /pathto /origfile /pathto /newlink 
+  
+ <pre>  
+ ln -s '' /path/from /origfile'' '' /path/to /newlink''  
+ </pre>  
  
 You must have appropriate permissions in the directory where you're creating the link for this to work.