hello,
with the link command you can create a file which points to an other file.
imagine you have an existing file, for example a library, /home/project1/alibrary.lib and a second project needs the same library, rather then to copy the file you can create link which takes no place on the disk.
ln /home/project1/alibrary.lib path_to_the_new_file
But if the new fle is on a different filesystem you had to use the option -s (symbolic link):
ln -s /home/project1/alibrary.lib /usr/.... (for example)
I hope I answered your question.
regards
Carine [sig][/sig]