I know that ls -l will give you the "number of links" but I'm looking for a command or combination of commands that will give me a list of all the symbolic links that point to a particular file.
|
| |||||
feedback
|
|
Something like this might work: find -L / -samefile /path/to/your/file Obviously you'll need to replace A brief explanation:
| |||||||
feedback
|