# The Zen of the Command Line The command is a beautiful thing. It has been around a long time. It has been honed by the patient labour of thousands of minds until it has become an object of zen-like refinement and beauty. Feel its power. ### Find broken symbolic links ( find / -type l | xargs file ) | grep 'broken symbolic link' ### Old find {path} -not -regex '.*/\.svn.*' -exec rm -f {} \;