Create Symbolic Links
If you made a mistake, here is how to delete the link without hurting the original data.
for f in src/*.txt; do ln -s "$f" "dest/$(basename "$f")"; done create symbolic links
ln -sf /path/to/original /path/to/link
If you made a mistake, here is how to delete the link without hurting the original data.
for f in src/*.txt; do ln -s "$f" "dest/$(basename "$f")"; done create symbolic links
ln -sf /path/to/original /path/to/link