Finding all symlinks in a directory
This is a very useful command if you need to find all symlinks in a certain directory:
ls -lR | grep "^l\|:$"
This is a very useful command if you need to find all symlinks in a certain directory:
ls -lR | grep "^l\|:$"