Skip to content

Instantly share code, notes, and snippets.

@apeckham
Created June 11, 2015 17:44
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apeckham/e98a303a9de73b4cf037 to your computer and use it in GitHub Desktop.
Save apeckham/e98a303a9de73b4cf037 to your computer and use it in GitHub Desktop.
find broken symlinks on mac os x
#http://unix.stackexchange.com/questions/34248/how-can-i-find-broken-symlinks
find . -type l ! -exec test -e {} \; -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment