Created
January 21, 2016 20:19
-
-
Save jmillerdesign/7371cfb24ad14aa1dae4 to your computer and use it in GitHub Desktop.
List all symlinks recursively from current directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List all symlinks | |
find . -type l | awk '{ sub(/.\/+/, ""); print }' | |
# List broken symlinks | |
find -L . -type l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment