Originally posted by: SystemAdmin
This will not work for the problem that Narciso is trying to solve:
"I need a kind of a way to create a link from dirs download1 and download2 to download3,
so any updates in the 2 first dirs would also see in download3."
Creating a symbolic link to all of the files in another directory is a one-shot deal. It will make all the files in the source directory visible from within the target directory, but any new files added to the source directory after the
ln command is run will not automatically become visible from within the target directory. In order to see any files added after the original
ln command is run, you would have to re-run the original command.
Unfortunately, I do not know how to create a "join" of two directories. But it could be a handy thing to be able to do.