Symlinks

A symlink (also called a symbolic link) is a type of file in Linux that points to another file or a folder on your computer. Symlinks are similar to shortcuts in Windows

$ ln -s /path/to/original /path/to/link
$ find . -maxdepth 1 -type l -ls

or

$ ls -la | grep "\->"