Skip to content

Commit

Permalink
Command to find broken symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
glejeune committed Feb 26, 2011
1 parent f2071ba commit 56c6fe8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@ notify-send "Title" "This is a message"

# When the system's freezed :
Keep Left Alt & Print Screen pressed, then R, S, E, I, U, B

# Find broken symlinks in a specified directory
for i in `find MY_DIRECTORY -type l`; do [ -e $i ] || echo $i is broken; done

0 comments on commit 56c6fe8

Please sign in to comment.