How to use symbolic links in linux
symbolic links (symlinks) reference another file, directory or ither linux file system objects. Reduces the need to duplicate files. Changes can be made in one place.
link types: hard: alias soft: reference
ln -s /tmp/reference-file symlink-file
ls -l
find dangling links
find . -xtype l
delete symlink
rm symlink-file
or
unlink symlink-file