IntraNet ![]() ![]() |
ln -s [source] [target]The blanks in between are important. Both, source and target, can be directories. If the source directory is somewhere else, you have to type in the whole path.
ls -lTo remove the link:
rm [target]
> But please explain to me next time how to do this. Since I have no > time to read man I would like if you give me directions how to do > this in general under Unix. In order to make a link to a file under UNIX, you type: ln existing-file new-link where "existing-file" is the filename of the existing file, and "new-link" is the name of the new filename. The way it works, is you need to think of the file as one thing, and the name as something used to refer to it. The file can have more than one name. You can do anything through both filenames, and deleting one filename only removes that name, not the file itself. Only when there are no names for a file is the file deleted.