Penguin

Differences between version 2 and previous revision of SymLink.

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

Newer page: version 2 Last edited on Saturday, October 4, 2003 1:01:16 am by AristotlePagaltzis Revert
Older page: version 1 Last edited on Saturday, October 4, 2003 1:00:21 am by AristotlePagaltzis Revert
@@ -1,5 +1,5 @@
 A symbolic link. This is a file that points to another file, simply by storing the target file's path which may be relative to the location of the SymLink, or absolute. It is also marked as special type of file, just like directories, [FIFO]s etc. 
  
 Using links (whether they be hard or symbolic ones) you can break the strictly hierarchical structure of a FileSystem. 
  
-Most file related [system calls | syscalls(2)] like open(3 ) and stat(3 ) will operate on the referenced file instead of the link itself. Some of them have "SymLink-aware" counterparts that will operate on the SymLink itself instead, eg lstat(2) which stat(2)s the link instead of the linkee. 
+Most file related [system calls | syscalls(2)] like open(2 ) and stat(2 ) will operate on the referenced file instead of the link itself. Some of them have "SymLink-aware" counterparts that will operate on the SymLink itself instead, eg lstat(2) which stat(2)s the link instead of the linkee.